From a20a61f4764d38c0076f53560b1e2a577d2f07c8 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Thu, 28 Feb 2019 09:02:33 -0800 Subject: [PATCH] qa: unmount clients before deleting fs Client unmount during test cleanup will hang if the file system was deleted. Fixes: http://tracker.ceph.com/issues/38518 Signed-off-by: Patrick Donnelly --- qa/tasks/cephfs/test_misc.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qa/tasks/cephfs/test_misc.py b/qa/tasks/cephfs/test_misc.py index 737a5409683c4..dd1ff2b752873 100644 --- a/qa/tasks/cephfs/test_misc.py +++ b/qa/tasks/cephfs/test_misc.py @@ -52,6 +52,9 @@ class TestMisc(CephFSTestCase): self.assertGreaterEqual(rctime, t-10) def test_fs_new(self): + self.mount_a.umount_wait() + self.mount_b.umount_wait() + data_pool_name = self.fs.get_data_pool_name() self.fs.mds_stop() -- 2.39.5