Skip to content
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

Wait for update to complete in test_api #6618

Merged
merged 2 commits into from
Dec 11, 2024
Merged
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
1 change: 1 addition & 0 deletions tests/integration-tests/tests/pcluster_api/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ def _test_cluster_workflow(
with open(updated_config_file, encoding="utf-8") as config_file:
updated_cluster_config = config_file.read()
_test_update_cluster(region, cluster_operations_client, cluster_name, updated_cluster_config)
cluster.wait_cluster_status("UPDATE_COMPLETE")

head_node = _test_describe_cluster_head_node(region, cluster_instances_client, cluster_name)
compute_node_map = _test_describe_cluster_compute_nodes(region, cluster_instances_client, cluster_name)
Expand Down
Loading