From: Kobi Ginon Date: Fri, 12 Jun 2026 16:01:44 +0000 (+0300) Subject: mgr/test_orchestrator: accept force_delete_data in remove_daemons X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b4499d4f9afdb85ee87c36fe6b6e5a64677dade9;p=ceph.git mgr/test_orchestrator: accept force_delete_data in remove_daemons PR #68428 plumbed force_delete_data through orchestrator daemon/service removal; update the test_orchestrator stub so orchestrator_cli QA (test_mds_rm, etc.) does not fail with an unexpected keyword argument. Fixes: https://tracker.ceph.com/issues/77374 Signed-off-by: Kobi Ginon --- 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'