Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration-tests/tests/common/assertions.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def assert_scaling_worked(
)


@retry(wait_fixed=seconds(20), stop_max_delay=minutes(5))
@retry(wait_fixed=seconds(20), stop_max_delay=minutes(6))
def wait_for_num_instances_in_cluster(cluster_name, region, desired):
return assert_num_instances_in_cluster(cluster_name, region, desired)

Expand Down
2 changes: 1 addition & 1 deletion tests/integration-tests/tests/common/hit_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def assert_compute_node_reasons(scheduler_commands, compute_nodes, expected_reas
assert_that(node_info).contains(f"Reason={expected_reason}")


@retry(wait_fixed=seconds(20), stop_max_delay=minutes(5))
@retry(wait_fixed=seconds(20), stop_max_delay=minutes(6))
def wait_for_num_nodes_in_scheduler(scheduler_commands, desired, filter_by_partition=None):
assert_num_nodes_in_scheduler(scheduler_commands, desired, filter_by_partition)

Expand Down
Loading