Skip to content

Commit

Permalink
Sleep 1 second between each VMs verification cycle (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebattat authored Oct 1, 2024
1 parent 5fe07ce commit 591b211
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmark_runner/workloads/bootstorm_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ def _verify_vm_ssh(self):
failure = True
upgrade_done = self._oc.get_cluster_status() == f'Cluster version is {self._wait_for_upgrade_version}'

current_wait_time += self._oc.SHORT_TIMEOUT # Increment the wait time
# Sleep 1 sec between each cycle
time.sleep(1)
current_wait_time += 1 # Increment the wait time
else:
# If _wait_for_upgrade_version is empty, verify VM SSH without waiting for upgrade
for vm_name in vm_names:
Expand Down

0 comments on commit 591b211

Please sign in to comment.