Skip to content

Commit 99672bb

Browse files
committed
test: increase timeout in test_human_readable_logs.py
1 parent 15c2e50 commit 99672bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/integration/smoke/test_human_readable_logs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ def test_01_disableHumanReadableLogs(self):
4848
sshClient.execute(command)
4949

5050
# CapacityChecker runs as soon as management server is up
51-
# Check if "usedMem: (" is printed out within 60 seconds while server is starting
52-
command = "timeout 60 tail -f /var/log/cloudstack/management/management-server.log | grep 'usedMem: ('"
53-
sshClient.timeout = 60
51+
# Check if "usedMem: (" is printed out within 120 seconds while server is starting
52+
command = "timeout 120 tail -f /var/log/cloudstack/management/management-server.log | grep 'usedMem: ('"
53+
sshClient.timeout = 120
5454
result = sshClient.runCommand(command)
5555
self.assertTrue(result['status'] == "FAILED")
5656

@@ -70,7 +70,7 @@ def test_02_enableHumanReadableLogs(self):
7070
sshClient.execute(command)
7171

7272
# CapacityChecker runs as soon as management server is up
73-
# Check if "usedMem: (" is printed out within 60 seconds while server is restarting
73+
# Check if "usedMem: (" is printed out within 120 seconds while server is restarting
7474
command = "timeout 120 tail -f /var/log/cloudstack/management/management-server.log | grep 'usedMem: ('"
7575
sshClient.timeout = 120
7676
result = sshClient.runCommand(command)

0 commit comments

Comments
 (0)