Skip to content

Commit 1a6e17d

Browse files
committed
Increase retry time when waiting for build stack to delete
1 parent cf8da42 commit 1a6e17d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration-tests/tests/pcluster_api/test_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def _cloudformation_wait(region, stack_name, status):
107107
config = Config(region_name=region)
108108
cloud_formation = boto3.client("cloudformation", config=config)
109109
waiter = cloud_formation.get_waiter(status)
110-
# 180 attempts, one every 30 seconds, times out after 90 minutes
111-
waiter.wait(StackName=stack_name, WaiterConfig={"MaxAttempts": 180})
110+
# 200 attempts, one every 30 seconds, times out after 100 minutes
111+
waiter.wait(StackName=stack_name, WaiterConfig={"MaxAttempts": 200})
112112

113113

114114
def _ec2_wait_running(region, instances):

0 commit comments

Comments
 (0)