Skip to content

Commit

Permalink
[integ-test] [integ-test] Increase sleep time waiting for head node r…
Browse files Browse the repository at this point in the history
…eboot from 240 to 300 seconds when running in US isolated regions

Signed-off-by: Hanwen <[email protected]>
  • Loading branch information
hanwen-cluster committed Nov 8, 2024
1 parent 0f6f2a0 commit 9f9cfa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration-tests/tests/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def reboot_head_node(cluster, remote_command_executor=None):
wait_head_node_running(cluster)
# Wait time is required for the head node to complete the reboot.
# We observed that headnode in US isolated regions may take more time to reboot.
time.sleep(240 if "us-iso" in cluster.region else 120)
time.sleep(300 if "us-iso" in cluster.region else 120)
logging.info(f"Rebooted head node for cluster: {cluster.name}")


Expand Down

0 comments on commit 9f9cfa9

Please sign in to comment.