From e1cd49bd4558f7491e11b2bffe9355001661f81f Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Tue, 30 Jul 2013 10:44:53 -0700 Subject: [PATCH] ceph_manager: wait 20s before wait_for_clean in test_map_discontinuity Fixes: #5806 Signed-off-by: Samuel Just --- teuthology/task/ceph_manager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teuthology/task/ceph_manager.py b/teuthology/task/ceph_manager.py index 13850a32e323a..e36e0e2667f7f 100644 --- a/teuthology/task/ceph_manager.py +++ b/teuthology/task/ceph_manager.py @@ -214,6 +214,9 @@ class Thrasher: self.ceph_manager.wait_for_all_up( timeout=self.config.get('timeout') ) + # now we wait 20s for the pg status to change, if it takes longer, + # the test *should* fail! + time.sleep(20) self.ceph_manager.wait_for_clean( timeout=self.config.get('timeout') ) -- 2.39.5