Skip to content

[Integ-Test] Increase the ComputeNodes launching time timeout to 6 minutes #6830

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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