From: Sage Weil Date: Sat, 7 Mar 2020 15:55:13 +0000 (-0600) Subject: mgr/cephadm: only need to invalidate once here X-Git-Tag: v15.1.1~68^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1ab85b7fde019a6303f4e8f8cd531a329d117c5d;p=ceph.git mgr/cephadm: only need to invalidate once here Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 1f4361796e09..8cc007e6b176 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -1767,7 +1767,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): host, name, 'unit', ['--name', name, a], error_ok=True) - self.cache.invalidate_host_daemons(host) + self.cache.invalidate_host_daemons(host) return "{} {} from host '{}'".format(action, name, host) def daemon_action(self, action, daemon_type, daemon_id):