From 296d4a3e32bb5d6f2a60f7ad55cc944e94275f7b Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Thu, 28 Feb 2019 12:33:04 -0500 Subject: [PATCH] orchestrator: drop id_ argument from update_stateless_service ...we have a "name" field in StatelessServiceSpec. Signed-off-by: Jeff Layton --- src/pybind/mgr/orchestrator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/orchestrator.py b/src/pybind/mgr/orchestrator.py index 1f3e8f2782b46..84357538053c8 100644 --- a/src/pybind/mgr/orchestrator.py +++ b/src/pybind/mgr/orchestrator.py @@ -332,8 +332,8 @@ class Orchestrator(object): """ raise NotImplementedError() - def update_stateless_service(self, service_type, id_, spec): - # type: (str, str, StatelessServiceSpec) -> WriteCompletion + def update_stateless_service(self, service_type, spec): + # type: (str, StatelessServiceSpec) -> WriteCompletion """ This is about changing / redeploying existing services. Like for example changing the number of service instances. -- 2.39.5