Skip to content

Commit aa2cb8c

Browse files
Merge pull request #120 from lumigo-io/improve-max-timeout
fix: change the maximum time to wait
2 parents 4a358d2 + 3c7b33b commit aa2cb8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/cloudformation.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ const deleteAllStacks = async (
7272
AWS,
7373
retryOpts = {
7474
retries: 3,
75-
minTimeout: 1000
75+
minTimeout: 1000,
76+
maxTimeout: 5000
7677
}
7778
) => {
7879
const allStacksPromises = regions.map(region =>

0 commit comments

Comments
 (0)