From b4499d4f9afdb85ee87c36fe6b6e5a64677dade9 Mon Sep 17 00:00:00 2001 From: Kobi Ginon Date: Fri, 12 Jun 2026 19:01:44 +0300 Subject: [PATCH] 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 --- src/pybind/mgr/test_orchestrator/module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' -- 2.47.3