Skip to content

Commit

Permalink
fix(azure): take --config value into account if set
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy committed Aug 12, 2024
1 parent 1b9db27 commit 665638b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/artillery/lib/platform/az/aci.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,11 @@ class PlatformAzureACI {
this.blobContainerClient = this.blobServiceClient.getContainerClient(
this.blobContainerName
);

const { manifest } = await createTest(this.opts.absoluteScriptPath, {
flags: this.platformOpts.cliArgs,
name: this.testRunId,
config: this.platformOpts.cliArgs.config,
flags: this.platformOpts.cliArgs,
customSyncClient: {
putObject: ({ _Bucket, Key, Body }, callback) => {
const blockBlobClient =
Expand Down

0 comments on commit 665638b

Please sign in to comment.