From: VasishtaShastry Date: Mon, 10 May 2021 06:38:59 +0000 (+0530) Subject: mgr: Fix orch osd rm stop help message X-Git-Tag: v16.2.5~87^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4910bdaaba77c4435116ffe86418ce68132ef988;p=ceph.git 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) --- diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index ddae0b0240e5..082df699f03e 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())