From c45ed060982b05765f5a48c184efc272fa8904f0 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Thu, 8 May 2025 09:17:00 +0200 Subject: [PATCH] test: fix test_hostha_simulator.py and test_outofbandmanagement.py (#10815) --- test/integration/smoke/test_hostha_simulator.py | 2 +- test/integration/smoke/test_outofbandmanagement.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/smoke/test_hostha_simulator.py b/test/integration/smoke/test_hostha_simulator.py index 1b3dd815a30..20d77e82743 100644 --- a/test/integration/smoke/test_hostha_simulator.py +++ b/test/integration/smoke/test_hostha_simulator.py @@ -457,7 +457,7 @@ class TestHostHA(cloudstackTestCase): retry_interval = 1 + (pingInterval * pingTimeout / 10) - res, _ = wait_until(retry_interval, 20, removeFakeMgmtServer, self.getFakeMsRunId()) + res, _ = wait_until(retry_interval, 100, removeFakeMgmtServer, self.getFakeMsRunId()) if not res: self.fail("Management server failed to turn down or remove fake mgmt server") diff --git a/test/integration/smoke/test_outofbandmanagement.py b/test/integration/smoke/test_outofbandmanagement.py index 79762719f69..3c2114dac9a 100644 --- a/test/integration/smoke/test_outofbandmanagement.py +++ b/test/integration/smoke/test_outofbandmanagement.py @@ -544,7 +544,7 @@ class TestOutOfBandManagement(cloudstackTestCase): retry_interval = 1 + (pingInterval * pingTimeout / 10) - res, _ = wait_until(retry_interval, 10, removeFakeMgmtServer, self.getFakeMsRunId()) + res, _ = wait_until(retry_interval, 100, removeFakeMgmtServer, self.getFakeMsRunId()) if not res: self.fail("Management server failed to turn down or remove fake mgmt server")