]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr: Fix orch osd rm stop help message
authorVasishtaShastry <vipin.indiasmg@gmail.com>
Mon, 10 May 2021 06:38:59 +0000 (12:08 +0530)
committerSage Weil <sage@newdream.net>
Fri, 4 Jun 2021 02:06:40 +0000 (21:06 -0500)
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 <vipin.indiasmg@gmail.com>
(cherry picked from commit 87fe9cec8ada9ef5d905d2d16f1726e05699398e)

src/pybind/mgr/orchestrator/module.py

index ddae0b0240e5974e0e101079203d3e92eee5f207..082df699f03ea83563a9720271c082f1d248e37c 100644 (file)
@@ -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())