From: Vallari Agrawal Date: Tue, 28 Jan 2025 12:43:17 +0000 (+0530) Subject: qa/tasks/nvmeof.py: Ignore systemctl_stop thrashing method X-Git-Tag: testing/wip-pdonnell-testing-20250205.170831-debug~21^2~3 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d4aec583b7eebffd6102a6be8eb2ce6a5f415d32;p=ceph-ci.git 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 --- diff --git a/qa/tasks/nvmeof.py b/qa/tasks/nvmeof.py index aeca32f1b65..a69c30af26b 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)