From 520a53446236652bc7a771ec533de335babac794 Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Thu, 6 Feb 2020 17:21:08 -0800 Subject: [PATCH] mgr/cephadm: fix minor typo Signed-off-by: Yehuda Sadeh --- 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 d5a44a00d4235..3fc99478893fd 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -1393,7 +1393,7 @@ class CephadmOrchestrator(MgrModule, orchestrator.OrchestratorClientMixin): found = list(zip(*args))[0] if args else [] not_found = {osd_id for osd_id in osd_ids if 'osd.%s' % osd_id not in found} if not_found: - raise OrchestratorError('Unable to find ODS: %s' % not_found) + raise OrchestratorError('Unable to find OSD: %s' % not_found) return self._remove_daemon(args) def _create_daemon(self, daemon_type, daemon_id, host, -- 2.39.5