diff --git a/src/pybind/mgr/test_orchestrator/module.py b/src/pybind/mgr/test_orchestrator/module.py index e63efbdbdd8..9ccec1338a2 100644 --- a/src/pybind/mgr/test_orchestrator/module.py +++ b/src/pybind/mgr/test_orchestrator/module.py @@ -225,12 +225,12 @@ class TestOrchestrator(MgrModule, orchestrator.Orchestrator): return [self._create_osds(dg) for dg in specs] @handle_orch_error - def remove_daemons(self, names): + def remove_daemons(self, names, force_delete_data=False): assert isinstance(names, list) return 'done' @handle_orch_error - def remove_service(self, service_name, force = False): + def remove_service(self, service_name, force=False, force_delete_data=False): assert isinstance(service_name, str) return 'done'