Skip to content

Commit 9d05e0b

Browse files
hehe7318hgreebe
authored andcommitted
Increase the ComputeNodes launching time timeout to 6 minutes (aws#6834)
1 parent 36f9fd1 commit 9d05e0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration-tests/tests/common/assertions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def assert_scaling_worked(
182182
)
183183

184184

185-
@retry(wait_fixed=seconds(20), stop_max_delay=minutes(5))
185+
@retry(wait_fixed=seconds(20), stop_max_delay=minutes(6))
186186
def wait_for_num_instances_in_cluster(cluster_name, region, desired):
187187
return assert_num_instances_in_cluster(cluster_name, region, desired)
188188

tests/integration-tests/tests/common/hit_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def assert_compute_node_reasons(scheduler_commands, compute_nodes, expected_reas
8585
assert_that(node_info).contains(f"Reason={expected_reason}")
8686

8787

88-
@retry(wait_fixed=seconds(20), stop_max_delay=minutes(5))
88+
@retry(wait_fixed=seconds(20), stop_max_delay=minutes(6))
8989
def wait_for_num_nodes_in_scheduler(scheduler_commands, desired, filter_by_partition=None):
9090
assert_num_nodes_in_scheduler(scheduler_commands, desired, filter_by_partition)
9191

0 commit comments

Comments
 (0)