From: Rongqi Sun Date: Mon, 1 Apr 2024 07:49:18 +0000 (+0000) Subject: test/cephadm: extend timeout limit to fix timeout issue X-Git-Tag: v20.0.0~2154^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F56609%2Fhead;p=ceph.git test/cephadm: extend timeout limit to fix timeout issue When run make check(arm64) on omani series servers, eg. https://jenkins.ceph.com/job/ceph-pull-requests-arm64/54751/. Shows: python: timeout after 30 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) Fixes: https://tracker.ceph.com/issues/65355 Signed-off-by: Rongqi Sun --- diff --git a/src/cephadm/tests/test_util_funcs.py b/src/cephadm/tests/test_util_funcs.py index aa64d54b0734..6d53012f7022 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 = 30 + timeout = 60 def _has_non_zero_exit(clog):