From: Jeff Layton Date: Thu, 28 Feb 2019 17:33:04 +0000 (-0500) Subject: orchestrator: drop id_ argument from update_stateless_service X-Git-Tag: v14.1.1~40^2~2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=296d4a3e32bb5d6f2a60f7ad55cc944e94275f7b;p=ceph-ci.git orchestrator: drop id_ argument from update_stateless_service ...we have a "name" field in StatelessServiceSpec. Signed-off-by: Jeff Layton --- diff --git a/src/pybind/mgr/orchestrator.py b/src/pybind/mgr/orchestrator.py index 1f3e8f2782b..84357538053 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.