From: Sage Weil Date: Sun, 1 Mar 2020 01:29:38 +0000 (-0600) Subject: mgr/test_orchestrator: add force flag to remove_daemons X-Git-Tag: v15.1.1~189^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=531c9ab4face63f7e0e95c46925e5cfe7fdf281e;p=ceph.git mgr/test_orchestrator: add force flag to remove_daemons Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/test_orchestrator/module.py b/src/pybind/mgr/test_orchestrator/module.py index d162271dffb..3b19c90e349 100644 --- a/src/pybind/mgr/test_orchestrator/module.py +++ b/src/pybind/mgr/test_orchestrator/module.py @@ -214,7 +214,7 @@ class TestOrchestrator(MgrModule, orchestrator.Orchestrator): @deferred_write("remove_daemons") - def remove_daemons(self, names): + def remove_daemons(self, names, force): assert isinstance(names, list) @deferred_write("remove_service")