From 1ab85b7fde019a6303f4e8f8cd531a329d117c5d Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 7 Mar 2020 09:55:13 -0600 Subject: [PATCH] mgr/cephadm: only need to invalidate once here Signed-off-by: Sage Weil --- src/pybind/mgr/cephadm/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 1f4361796e0..8cc007e6b17 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): -- 2.39.5