From: Redouane Kachach Date: Wed, 25 Mar 2026 14:49:59 +0000 (+0100) Subject: mgr/test_orchestrator: fixing daemon_action method signature X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=394aaff8ffb6563fb2c63ad17a90d044823af3c1;p=ceph.git 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 --- 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