Skip to content

Commit

Permalink
tasks/cephfs: switch unmount timeout to 15 minutes
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
gregsfortytwo committed Sep 16, 2015
1 parent 07eb03a commit f97fde6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/cephfs/fuse_mount.py
Expand Up @@ -236,7 +236,7 @@ def umount_wait(self, force=False):
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.")
Expand Down

0 comments on commit f97fde6

Please sign in to comment.