From d4aec583b7eebffd6102a6be8eb2ce6a5f415d32 Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Tue, 28 Jan 2025 18:13:17 +0530 Subject: [PATCH] qa/tasks/nvmeof.py: Ignore systemctl_stop thrashing method Do not use systemctl_stop method to thrash daemons, just use 'ceph orch daemon stop' and 'ceph orch daemon rm' methods to thrash nvmeof gateways. Signed-off-by: Vallari Agrawal --- qa/tasks/nvmeof.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qa/tasks/nvmeof.py b/qa/tasks/nvmeof.py index aeca32f1b657c..a69c30af26b94 100644 --- a/qa/tasks/nvmeof.py +++ b/qa/tasks/nvmeof.py @@ -394,7 +394,8 @@ class NvmeofThrasher(Thrasher, Greenlet): def kill_daemon(self, daemon): kill_methods = [ - "ceph_daemon_stop", "systemctl_stop", + "ceph_daemon_stop", + # "systemctl_stop", "daemon_remove", ] chosen_method = self.rng.choice(kill_methods) -- 2.39.5