From 01edb5955ceb0c1a5c76fc44647c120a5fbc48ed Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 3 Mar 2020 12:12:01 -0600 Subject: [PATCH] mgr/cephadm: _create_osd -> _create_osds So we could do a single daemon synchronously, if we chose. Signed-off-by: Sage Weil --- src/pybind/mgr/cephadm/module.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 17ed63e6023e6..6cd9cb19e205c 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -1934,9 +1934,12 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): continue cmds.append((host, cmd)) - return self._create_osd(cmds) + return self._create_osds(cmds) @async_map_completion + def _create_osds(self, host, cmd): + return self._create_osd(host, cmd) + def _create_osd(self, host, cmd): self._require_hosts(host) -- 2.39.5