Skip to content

Commit

Permalink
chore: slow down
Browse files Browse the repository at this point in the history
  • Loading branch information
biochimia committed May 3, 2024
1 parent c7972d8 commit 305f30e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cfn_review_bot/cfn.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ def wait_for_change_set(self, change_set: ChangeSet):
change_set.detail = detail
return

if (datetime.datetime.now() - start).total_seconds() > 60:
if (datetime.datetime.now() - start).total_seconds() > 180:
raise TimeoutError(
f'Timeout waiting for change set {change_set.id} to become ready')

time.sleep(5)
time.sleep(15)

0 comments on commit 305f30e

Please sign in to comment.