]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/test_orchestrator: fixing daemon_action method signature 67998/head
authorRedouane Kachach <rkachach@ibm.com>
Wed, 25 Mar 2026 14:49:59 +0000 (15:49 +0100)
committerRedouane Kachach <rkachach@ibm.com>
Wed, 25 Mar 2026 14:49:59 +0000 (15:49 +0100)
Adding missing argument (force) to the method signature

Fixes: https://tracker.ceph.com/issues/75664
Signed-off-by: Redouane Kachach <rkachach@ibm.com>
src/pybind/mgr/test_orchestrator/module.py

index 74d23f0aedc5f038b00715b5398d3acc53e8520b..e63efbdbdd8f14072fdf042c2100d46ddb29805d 100644 (file)
@@ -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