This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to branch 4.20 in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.20 by this push: new c45ed060982 test: fix test_hostha_simulator.py and test_outofbandmanagement.py (#10815) c45ed060982 is described below commit c45ed060982b05765f5a48c184efc272fa8904f0 Author: Wei Zhou <weiz...@apache.org> AuthorDate: Thu May 8 09:17:00 2025 +0200 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")