Skip to content

Commit

Permalink
Fix: Wrong underscore for JIRA_PASSWORD environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
uniqueck committed Mar 5, 2024
1 parent 4b2be3a commit fa23fef
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 59 deletions.
6 changes: 3 additions & 3 deletions lfet/common/jiraConfig.lfet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<LFET version="LF-ET 2.3.0 (231102a)" language="German" saveDate="2024.01.28 at 10:43:07 CET" saveUser="constantin">
<LFET version="LF-ET 2.3.0 (240304A)" language="German" saveDate="2024.03.05 at 11:34:09 CET" saveUser="constantin">
<Conditions>
<Condition uId="16956802542147703">
<Title language="German" value="Step"/>
Expand Down Expand Up @@ -252,12 +252,12 @@
<ActionOccurrence uId="17063950756672961">
<Symbol language="German" value="DOC_USR_PWD"/>
<Title language="German" value="username via doc attr and password via env without project key prefix"/>
<SourceCode codeLanguage="JavaScript" sourceCodeType="StmtSeq" value="_$$dtname.auth = 'Basic ' + Buffer.from(doc.getAttribute(`${_prefixDoc}jira-username`) + ':' + process.env[`_${_prefixEnv}JIRA_PASSWORD`]).toString('base64')"/>
<SourceCode codeLanguage="JavaScript" sourceCodeType="StmtSeq" value="_$$dtname.auth = 'Basic ' + Buffer.from(doc.getAttribute(`${_prefixDoc}jira-username`) + ':' + process.env[`${_prefixEnv}JIRA_PASSWORD`]).toString('base64')"/>
</ActionOccurrence>
<ActionOccurrence uId="17064330930142820">
<Symbol language="German" value="DOC_USR_API"/>
<Title language="German" value="username via doc attr and api token via env without project key prefix"/>
<SourceCode codeLanguage="JavaScript" sourceCodeType="StmtSeq" value="_$$dtname.auth = 'Basic ' + Buffer.from(doc.getAttribute(`${_prefixDoc}jira-username`) + ':' + process.env[`_${_prefixEnv}JIRA_APITOKEN`]).toString('base64')"/>
<SourceCode codeLanguage="JavaScript" sourceCodeType="StmtSeq" value="_$$dtname.auth = 'Basic ' + Buffer.from(doc.getAttribute(`${_prefixDoc}jira-username`) + ':' + process.env[`${_prefixEnv}JIRA_APITOKEN`]).toString('base64')"/>
</ActionOccurrence>
<ActionOccurrence uId="17063951157372964">
<Symbol language="German" value="PENV_USR_PWD"/>
Expand Down
Binary file modified lfet/common/jiraConfig.lfet.$bak.zip
Binary file not shown.
Loading

0 comments on commit fa23fef

Please sign in to comment.