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