This is an automated email from the ASF dual-hosted git repository.
bstoyanov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new bb391c3deb1 test: increase timeout in test_human_readable_logs.py
(#11972)
bb391c3deb1 is described below
commit bb391c3deb1c4a4172f91a60898decac33854246
Author: Wei Zhou <[email protected]>
AuthorDate: Fri Jan 30 07:50:44 2026 +0100
test: increase timeout in test_human_readable_logs.py (#11972)
---
test/integration/smoke/test_human_readable_logs.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/test/integration/smoke/test_human_readable_logs.py
b/test/integration/smoke/test_human_readable_logs.py
index fb972511f9c..c2478bfe576 100644
--- a/test/integration/smoke/test_human_readable_logs.py
+++ b/test/integration/smoke/test_human_readable_logs.py
@@ -48,9 +48,9 @@ class TestHumanReadableLogs(cloudstackTestCase):
sshClient.execute(command)
# CapacityChecker runs as soon as management server is up
- # Check if "usedMem: (" is printed out within 60 seconds while server
is starting
- command = "timeout 60 tail -f
/var/log/cloudstack/management/management-server.log | grep 'usedMem: ('"
- sshClient.timeout = 60
+ # Check if "usedMem: (" is printed out within 120 seconds while server
is starting
+ command = "timeout 120 tail -f
/var/log/cloudstack/management/management-server.log | grep 'usedMem: ('"
+ sshClient.timeout = 120
result = sshClient.runCommand(command)
self.assertTrue(result['status'] == "FAILED")
@@ -70,7 +70,7 @@ class TestHumanReadableLogs(cloudstackTestCase):
sshClient.execute(command)
# CapacityChecker runs as soon as management server is up
- # Check if "usedMem: (" is printed out within 60 seconds while server
is restarting
+ # Check if "usedMem: (" is printed out within 120 seconds while server
is restarting
command = "timeout 120 tail -f
/var/log/cloudstack/management/management-server.log | grep 'usedMem: ('"
sshClient.timeout = 120
result = sshClient.runCommand(command)