From a01612e3011cdc2b2d22d4ad6dd67caf0c74f579 Mon Sep 17 00:00:00 2001 From: Paul Cuzner Date: Fri, 5 Feb 2021 12:05:05 +1300 Subject: [PATCH] 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 (cherry picked from commit f6ccd2ebf24d4c2cf6ff073e0ccc735115b758de) --- 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 85f67e8d7db94..8a62ba5c1fb98 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) -- 2.39.5