From: Greg Farnum Date: Wed, 16 Sep 2015 21:27:14 +0000 (-0700) Subject: tasks/cephfs: switch unmount timeout to 15 minutes X-Git-Tag: v11.1.1~58^2^2~506^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f97fde6c2695145e38a8bc3c44cbfeb69d2465d1;p=ceph-ci.git tasks/cephfs: switch unmount timeout to 15 minutes 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 --- diff --git a/tasks/cephfs/fuse_mount.py b/tasks/cephfs/fuse_mount.py index 88531fdbb18..60722a2e9f2 100644 --- a/tasks/cephfs/fuse_mount.py +++ b/tasks/cephfs/fuse_mount.py @@ -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.")