Skip to content

Commit

Permalink
fix(fargate): replace special characters in task name (#2736)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardobridge committed May 13, 2024
1 parent 0e34b80 commit 6680314
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ async function tryRunCluster(scriptPath, options, artilleryReporter) {
region: options.region,
taskName: `${TASK_NAME}_${
IS_FARGATE ? 'fargate' : ''
}_${clusterName}_${IMAGE_VERSION}_${Math.floor(Math.random() * 1e6)}`,
}_${clusterName}_${IMAGE_VERSION.replace(/\./g, '-')}_${Math.floor(Math.random() * 1e6)}`,
clusterName: clusterName,
logGroupName: LOGGROUP_NAME,
cliOptions: options,
Expand Down

0 comments on commit 6680314

Please sign in to comment.