From: Sage Weil Date: Fri, 2 Oct 2015 12:44:01 +0000 (-0400) Subject: tasks/radosbench: wait just a bit longer X-Git-Tag: v11.1.1~58^2^2~477^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3e30d5dfdf823b345a6ded71e32e016e4e7d1396;p=ceph-ci.git tasks/radosbench: wait just a bit longer A run failed due to thrashing.. missed by about 30s (the osd eventually sent the last reply but we'd already timed out). Signed-off-by: Sage Weil --- diff --git a/tasks/radosbench.py b/tasks/radosbench.py index 389748249b0..0924dab5295 100644 --- a/tasks/radosbench.py +++ b/tasks/radosbench.py @@ -95,7 +95,7 @@ def task(ctx, config): try: yield finally: - timeout = config.get('time', 360) * 5 + timeout = config.get('time', 360) * 5 + 180 log.info('joining radosbench (timing out after %ss)', timeout) run.wait(radosbench.itervalues(), timeout=timeout)