From 3005d24001dc22a382f70582bc8acf05cd455f26 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 20 Jan 2020 11:23:13 -0600 Subject: [PATCH] qa/tasks/ceph_manager: fix revive_osd path This was broken since it was introduced in b02e2f6cf2feb2711d4c867bf08c914b85715bb6 a year and a half ago... Signed-off-by: Sage Weil --- qa/tasks/ceph_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ceph_manager.py b/qa/tasks/ceph_manager.py index 2f9b747939a3..53cc9a59b691 100644 --- a/qa/tasks/ceph_manager.py +++ b/qa/tasks/ceph_manager.py @@ -848,7 +848,7 @@ class OSDThrasher(Thrasher): 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))): - revive_osd() + self.revive_osd(i) # let PGs repair themselves or our next knockout might kill one self.ceph_manager.wait_for_clean(timeout=self.config.get('timeout')) -- 2.47.3