From d014b7924d4c9003d43584f130b08e8438658398 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 12 Jul 2019 08:56:50 -0500 Subject: [PATCH] qa/tasks/ceph_manager: 5s -> 15s for 'osd out' to be visible Signed-off-by: Sage Weil --- qa/tasks/ceph_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/ceph_manager.py b/qa/tasks/ceph_manager.py index 25858bf8c02..37279fc35cf 100644 --- a/qa/tasks/ceph_manager.py +++ b/qa/tasks/ceph_manager.py @@ -766,9 +766,9 @@ class Thrasher: self.log("chose to kill {n} OSDs".format(n=most_killable)) for i in range(1, most_killable): self.kill_osd(mark_out=True) - time.sleep(5) + time.sleep(15) assert self.ceph_manager.all_active_or_peered(), \ - 'not all PGs are active or peered 5 seconds after marking out OSDs' + 'not all PGs are active or peered 15 seconds after marking out OSDs' else: # chose to revive OSDs, bring up a random fraction of the dead ones self.log("chose to revive osds") for i in range(1, int(rand_val * len(self.dead_osds))): -- 2.39.5