Skip to content

Commit

Permalink
[integ-test] Increase sleep time waiting for head node reboot from 24…
Browse files Browse the repository at this point in the history
…0 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 e550d79 commit c1a4c5a
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 c1a4c5a

Please sign in to comment.