Skip to content

Commit ce81a8e

Browse files
test: sleep 30s after restarting mgt server in test_kubernetes_supported_versions.py to fix test failures with test_secondary_storage.py (apache#5962)
1 parent 453aeb0 commit ce81a8e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/integration/smoke/test_kubernetes_supported_versions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ def restartServer(cls):
9494
#Waits for management to come up in 5 mins, when it's up it will continue
9595
timeout = time.time() + 300
9696
while time.time() < timeout:
97-
if cls.isManagementUp() is True: return
97+
if cls.isManagementUp() is True:
98+
time.sleep(30)
99+
return
98100
time.sleep(5)
99101
return cls.fail("Management server did not come up, failing")
100102

0 commit comments

Comments
 (0)