]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tasks/radosbench: wait just a bit longer
authorSage Weil <sage@redhat.com>
Fri, 2 Oct 2015 12:44:01 +0000 (08:44 -0400)
committerLoic Dachary <ldachary@redhat.com>
Sun, 4 Oct 2015 23:58:03 +0000 (01:58 +0200)
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 <sage@redhat.com>
(cherry picked from commit 3e30d5dfdf823b345a6ded71e32e016e4e7d1396)

tasks/radosbench.py

index af976fd557a316c034f3fbb7f6e5e4735ca036bc..73c543728570e14952f48188f163d1393a4d68b5 100644 (file)
@@ -92,7 +92,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)