]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
tasks/cephfs: switch unmount timeout to 15 minutes
authorGreg Farnum <gfarnum@redhat.com>
Wed, 16 Sep 2015 21:27:14 +0000 (14:27 -0700)
committerGreg Farnum <gfarnum@redhat.com>
Wed, 16 Sep 2015 21:27:14 +0000 (14:27 -0700)
Our ffsb and fsync tests contain so many small writes at random offsets
that it can take >10 minutes to commit all of them to disk if we get
a slower OSD cluster. 15 minutes is still a plenty-fast timeout for
this stage compared to just hanging and losing the logs!

Signed-off-by: Greg Farnum <gfarnum@redhat.com>
tasks/cephfs/fuse_mount.py

index 88531fdbb188bc5b288b3ba636e537891808b6d6..60722a2e9f266c389a022ba7ece80ec431559075 100644 (file)
@@ -236,7 +236,7 @@ class FuseMount(CephFSMount):
         try:
             if self.fuse_daemon:
                 # Permit a timeout, so that we do not block forever
-                run.wait([self.fuse_daemon], 30)
+                run.wait([self.fuse_daemon], 900)
         except MaxWhileTries:
             log.error("process failed to terminate after unmount.  This probably"
                       "indicates a bug within ceph-fuse.")