From db8274db4209482077b822cdc0fca16fdd84f844 Mon Sep 17 00:00:00 2001 From: Kiefer Chang Date: Mon, 9 Mar 2020 14:30:48 +0800 Subject: [PATCH] mgr/cephadm: add _remove_osds_bg back to main loop The call was accidentally removed in https://github.com/ceph/ceph/pull/33602. Signed-off-by: Kiefer Chang --- src/pybind/mgr/cephadm/module.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index f75543184880..5e1186ce082c 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -1047,6 +1047,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): self.log.debug("serve starting") while self.run: self._check_hosts() + self.rm_util._remove_osds_bg() # refresh daemons self.log.debug('refreshing hosts') -- 2.47.3