Skip to content

Commit

Permalink
chore: fix flaky test (#4228)
Browse files Browse the repository at this point in the history
This test has been failing recently due to a resource with the same name
already existing. I think we have been running into a race condition
between different jobs.

Remove the hardcoded name.
  • Loading branch information
corymhall committed Jul 15, 2024
1 parent 335cac4 commit 2684053
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion examples/regress-2555/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ let content = doc.replace("{STEP}", String(step));

// Create the SSM Automation Runbook
const nodeBuildRunbookDoc = new aws.ssm.Document('nodeBuildRunbook-doc', {
name: 'nodeBuildRunbook',
content: content,
documentType: 'Automation',
documentFormat: 'YAML',
Expand Down
1 change: 0 additions & 1 deletion examples/regress-2555/step1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ let content = doc.replace("{STEP}", String(step));

// Create the SSM Automation Runbook
const nodeBuildRunbookDoc = new aws.ssm.Document('nodeBuildRunbook-doc', {
name: 'nodeBuildRunbook',
content: content,
documentType: 'Automation',
documentFormat: 'YAML',
Expand Down

0 comments on commit 2684053

Please sign in to comment.