From: Paul Cuzner Date: Thu, 4 Feb 2021 23:05:05 +0000 (+1300) Subject: mgr/cephadm:update test_orchestrator func signature X-Git-Tag: v17.1.0~3032^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F38695%2Fhead;p=ceph.git mgr/cephadm:update test_orchestrator func signature The available signature has changed to 3 parms, so this patch is needed to ensure it conforms. Signed-off-by: Paul Cuzner --- diff --git a/src/pybind/mgr/test_orchestrator/module.py b/src/pybind/mgr/test_orchestrator/module.py index 85f67e8d7db9..8a62ba5c1fb9 100644 --- a/src/pybind/mgr/test_orchestrator/module.py +++ b/src/pybind/mgr/test_orchestrator/module.py @@ -90,7 +90,7 @@ class TestOrchestrator(MgrModule, orchestrator.Orchestrator): return HandleCommandResult(retval=-errno.EINVAL, stderr=str(e)) def available(self): - return True, "" + return True, "", {} def __init__(self, *args, **kwargs): super(TestOrchestrator, self).__init__(*args, **kwargs)