Skip to content

Commit 5a8a9df

Browse files
rishabh-d-davenizamial09
authored andcommitted
qa/vstart_runner: increase timeout for vstart.sh command
Since the timeout bug was fixed (https://tracker.ceph.com/issues/65533) "Ceph API tests" sometimes fails because vstart.sh command had to be aborted due to timeout. Currently, "timeout" is set to 300 seconds which sometimes is not enough for vstart.sh to run successfully for "Ceph API tests" CI job. 180 seconds usually suffices for vstart.sh to run successfully when used for CephFS. Increase value of "timeout" to avoid such failures on "Ceph API tests" CI. Fixes: https://tracker.ceph.com/issues/65565 Signed-off-by: Rishabh Dave <[email protected]> (cherry picked from commit f779b42)
1 parent ac656f0 commit 5a8a9df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qa/tasks/vstart_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,7 @@ def exec_test():
13991399
log.info('\nrunning vstart.sh now...')
14001400
# usually, i get vstart.sh running completely in less than 100
14011401
# seconds.
1402-
remote.run(args=args, env=vstart_env, timeout=(5 * 60))
1402+
remote.run(args=args, env=vstart_env, timeout=(10 * 60))
14031403
log.info('\nvstart.sh finished running')
14041404

14051405
# Wait for OSD to come up so that subsequent injectargs etc will

0 commit comments

Comments
 (0)