Skip to content

Commit 98f3f46

Browse files
committed
chore: Increase instance waiter retries from 60 to 75
Signed-off-by: Mia Battad <[email protected]>
1 parent 13662a4 commit 98f3f46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deadline_test_fixtures/deadline/worker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def _launch_instance(self, *, s3_files: list[tuple[str, str]] | None = None) ->
409409
instance_running_waiter = self.ec2_client.get_waiter("instance_status_ok")
410410
instance_running_waiter.wait(
411411
InstanceIds=[self.instance_id],
412-
WaiterConfig={"Delay": 15, "MaxAttempts": 60},
412+
WaiterConfig={"Delay": 15, "MaxAttempts": 75},
413413
)
414414
LOG.info(f"EC2 instance {self.instance_id} status is OK")
415415

0 commit comments

Comments
 (0)