From: Rongqi Sun Date: Wed, 17 Apr 2024 08:02:36 +0000 (+0000) Subject: test/cephadm: extend timeout limit again to fix timeout issue X-Git-Tag: testing/wip-mchangir-testing-20240429.064231-main-debug~17^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d54cabb5b37c9f4230b555c824407dee9e3fed9e;p=ceph-ci.git test/cephadm: extend timeout limit again to fix timeout issue When run make check(arm64) on omani series servers, Shows: python: timeout after 60 seconds INFO root:call_wrappers.py:284 Non-zero exit code 124 from /home/jenkins-build/build/workspace/ceph-pull-requests-arm64/src/cephadm/.tox/py3/bin/python -c for i in range(1000000): print(i, flush=True) Seems like 60s is not enough, extend to 300s would be fine. Signed-off-by: Rongqi Sun --- diff --git a/src/cephadm/tests/test_util_funcs.py b/src/cephadm/tests/test_util_funcs.py index 6d53012f702..92872b196f3 100644 --- a/src/cephadm/tests/test_util_funcs.py +++ b/src/cephadm/tests/test_util_funcs.py @@ -558,7 +558,7 @@ class FakeContext: with_cephadm_ctx is not appropriate (it enables too many mocks, etc). """ - timeout = 60 + timeout = 300 def _has_non_zero_exit(clog):