From: Venky Shankar Date: Mon, 24 Feb 2020 07:27:25 +0000 (-0500) Subject: test: pass timeout argument to mount::wait_for_dir_empty() X-Git-Tag: v15.1.1~277^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5ec09a228ca2b726da3ce79fc01e07911051326a;p=ceph.git test: pass timeout argument to mount::wait_for_dir_empty() Signed-off-by: Venky Shankar --- diff --git a/qa/tasks/cephfs/test_volumes.py b/qa/tasks/cephfs/test_volumes.py index cc823dbdd5eb..6344f2565b10 100644 --- a/qa/tasks/cephfs/test_volumes.py +++ b/qa/tasks/cephfs/test_volumes.py @@ -155,7 +155,7 @@ class TestVolumes(CephFSTestCase): # XXX: construct the trash dir path (note that there is no mgr # [sub]volume interface for this). trashdir = os.path.join("./", "volumes", "_deleting") - self.mount_a.wait_for_dir_empty(trashdir) + self.mount_a.wait_for_dir_empty(trashdir, timeout=timeout) def setUp(self): super(TestVolumes, self).setUp()