Skip to content

Commit

Permalink
Merge pull request #249 from katalon-studio/fix-agent
Browse files Browse the repository at this point in the history
Fix agent
  • Loading branch information
quidl authored Aug 30, 2024
2 parents 36da7f1 + fb45ba1 commit 149dd2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ class Agent {

const jobApiKey = parameter.environmentVariables
.find((item) => item.name === jobApiKeyEnv);
const apiKey = jobApiKey ? jobApiKey.value : this.apikey;
const apiKey = jobApiKey ? jobApiKey.value : this.apikey;

let ksArgs;
if (config.isOnPremise) {
Expand Down

0 comments on commit 149dd2a

Please sign in to comment.