From 394aaff8ffb6563fb2c63ad17a90d044823af3c1 Mon Sep 17 00:00:00 2001 From: Redouane Kachach Date: Wed, 25 Mar 2026 15:49:59 +0100 Subject: [PATCH] mgr/test_orchestrator: fixing daemon_action method signature Adding missing argument (force) to the method signature Fixes: https://tracker.ceph.com/issues/75664 Signed-off-by: Redouane Kachach --- src/pybind/mgr/test_orchestrator/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/test_orchestrator/module.py b/src/pybind/mgr/test_orchestrator/module.py index 74d23f0aedc5..e63efbdbdd8f 100644 --- a/src/pybind/mgr/test_orchestrator/module.py +++ b/src/pybind/mgr/test_orchestrator/module.py @@ -245,7 +245,7 @@ class TestOrchestrator(MgrModule, orchestrator.Orchestrator): return 'done' @handle_orch_error - def daemon_action(self, action, daemon_name, image=None): + def daemon_action(self, action, daemon_name, image=None, force=False): return 'done' @handle_orch_error -- 2.47.3