From 8433ced84733da86d545ccacc06ddea3a0282071 Mon Sep 17 00:00:00 2001 From: "Yan, Zheng" Date: Wed, 13 Sep 2017 16:15:31 +0800 Subject: [PATCH] qa/cephfs: fix test_evict_client executing mount_a.kill() twice, then executing mount_b.kill_cleanup() twice do not make sense. Signed-off-by: "Yan, Zheng" --- qa/tasks/cephfs/test_misc.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/qa/tasks/cephfs/test_misc.py b/qa/tasks/cephfs/test_misc.py index 77ca07a194a..21d7a3e55fb 100644 --- a/qa/tasks/cephfs/test_misc.py +++ b/qa/tasks/cephfs/test_misc.py @@ -124,9 +124,7 @@ class TestMisc(CephFSTestCase): self.assert_session_count(2, ls_data) self.mount_a.kill() - self.mount_a.kill() - self.mount_b.kill_cleanup() - self.mount_b.kill_cleanup() + self.mount_a.kill_cleanup() time.sleep(self.mds_session_autoclose * 1.5) ls_data = self.fs.mds_asok(['session', 'ls']) -- 2.47.3