Skip to content

Commit a63a4bf

Browse files
committed
[Test] In test_scontrol_reboot, increase the timeout to wait for compute nodes to reboot from 400s to 500s in Rocky and RHEL as we observed an increase in bootstrap time.
1 parent ba41b29 commit a63a4bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration-tests/tests/schedulers/test_slurm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -799,9 +799,9 @@ def test_scontrol_reboot(
799799
slots=2,
800800
constraint="dynamic",
801801
)
802-
# TOFIX We observe in 3.13.0 an increase in the bootstrap time for Rocky and RHEL.
802+
# TOFIX We observe in 3.13.0 an increase in the bootstrap time for AL2023, Rocky and RHEL.
803803
# We must address it and restore the default wait time to 400s.
804-
stop_max_delay_secs = 500 if (os.startswith("rocky") or os.startswith("rhel")) else 400
804+
stop_max_delay_secs = 500 if (os == "alinux2023" or os.startswith("rocky") or os.startswith("rhel")) else 400
805805
wait_for_compute_nodes_states(
806806
slurm_commands,
807807
["queue1-dy-cr1-1", "queue1-dy-cr1-2"],

0 commit comments

Comments
 (0)