Skip to content

Commit

Permalink
Merge pull request #120 from lumigo-io/improve-max-timeout
Browse files Browse the repository at this point in the history
fix: change the maximum time to wait
  • Loading branch information
theburningmonk authored Apr 3, 2021
2 parents 4a358d2 + 3c7b33b commit aa2cb8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/cloudformation.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ const deleteAllStacks = async (
AWS,
retryOpts = {
retries: 3,
minTimeout: 1000
minTimeout: 1000,
maxTimeout: 5000
}
) => {
const allStacksPromises = regions.map(region =>
Expand Down

0 comments on commit aa2cb8c

Please sign in to comment.