Skip to content

Commit 7d973e3

Browse files
committed
test: fix test_ha_multiple_mgmt_server_ownership in test_hostha_simulator.py
this fixes the test failure below ``` ====================================================================== FAIL: Tests ha resource ownership expiry across multi-mgmt server ---------------------------------------------------------------------- Traceback (most recent call last): File "/root/test/integration/smoke/test_hostha_simulator.py", line 462, in test_ha_multiple_mgmt_server_ownership self.fail("Management server failed to turn down or remove fake mgmt server") AssertionError: Management server failed to turn down or remove fake mgmt server ---------------------------------------------------------------------- Ran 19 tests in 277.481s ```
1 parent 91c1168 commit 7d973e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/smoke/test_hostha_simulator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ def checkHaOwnershipExpiry(fakeMsId):
457457

458458
retry_interval = 1 + (pingInterval * pingTimeout / 10)
459459

460-
res, _ = wait_until(retry_interval, 20, removeFakeMgmtServer, self.getFakeMsRunId())
460+
res, _ = wait_until(retry_interval, 100, removeFakeMgmtServer, self.getFakeMsRunId())
461461
if not res:
462462
self.fail("Management server failed to turn down or remove fake mgmt server")
463463

0 commit comments

Comments
 (0)