From 4910bdaaba77c4435116ffe86418ce68132ef988 Mon Sep 17 00:00:00 2001 From: VasishtaShastry Date: Mon, 10 May 2021 12:08:59 +0530 Subject: [PATCH] mgr: Fix orch osd rm stop help message Corrects help message of `ceph orch osd rm --help` Doc link - https://docs.ceph.com/en/latest/cephadm/osd/#stopping-osd-removal Signed-off-by: VasishtaShastry (cherry picked from commit 87fe9cec8ada9ef5d905d2d16f1726e05699398e) --- src/pybind/mgr/orchestrator/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index ddae0b0240e59..082df699f03ea 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -824,7 +824,7 @@ Usage: @_cli_write_command('orch osd rm stop') def _osd_rm_stop(self, svc_id: List[str]) -> HandleCommandResult: - """Remove OSD services""" + """Cancel ongoing OSD removal operation""" completion = self.stop_remove_osds(svc_id) raise_if_exception(completion) return HandleCommandResult(stdout=completion.result_str()) -- 2.39.5