From 87fe9cec8ada9ef5d905d2d16f1726e05699398e 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 --- 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 d6b5bef0fbf62..60fe4df3fdf13 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -807,7 +807,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