From 2e0e469195f094274153aec3fbc8d1248134f0e2 Mon Sep 17 00:00:00 2001 From: Nitzan Mordechai Date: Mon, 12 Aug 2024 11:44:48 +0000 Subject: [PATCH] mon/thrasher: set stopping stopping was set by PR #58282 to bool instead of set() Fixes: https://tracker.ceph.com/issues/67496 Signed-off-by: Nitzan Mordechai --- qa/tasks/mon_thrash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/mon_thrash.py b/qa/tasks/mon_thrash.py index 34aa1f9cc9e..84b0b6c521b 100644 --- a/qa/tasks/mon_thrash.py +++ b/qa/tasks/mon_thrash.py @@ -161,7 +161,7 @@ class MonitorThrasher(Thrasher): """ Stop the thrashing process. """ - self.stopping = True + self.stopping.set() def join(self): """ -- 2.39.5