]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/tasks/nvmeof.py: Ignore systemctl_stop thrashing method
authorVallari Agrawal <vallari.agrawal@ibm.com>
Tue, 28 Jan 2025 12:43:17 +0000 (18:13 +0530)
committerVallari Agrawal <vallari.agrawal@ibm.com>
Thu, 30 Jan 2025 12:17:00 +0000 (17:47 +0530)
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 <vallari.agrawal@ibm.com>
qa/tasks/nvmeof.py

index aeca32f1b657c63730ded2f35416bbbb942e086e..a69c30af26b94813e22a020a64ffc5efd0a71553 100644 (file)
@@ -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)