From: Sage Weil Date: Mon, 20 Jan 2020 17:23:13 +0000 (-0600) Subject: qa/tasks/ceph_manager: fix revive_osd path X-Git-Tag: v15.1.0~144^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F32725%2Fhead;p=ceph.git 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 --- 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'))