]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr: Fix orch osd rm stop help message 41250/head
authorVasishtaShastry <vipin.indiasmg@gmail.com>
Mon, 10 May 2021 06:38:59 +0000 (12:08 +0530)
committerVasishtaShastry <vipin.indiasmg@gmail.com>
Mon, 10 May 2021 12:54:49 +0000 (18:24 +0530)
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>
src/pybind/mgr/orchestrator/module.py

index d6b5bef0fbf6282be28b32f07ef3f4e06a2e7432..60fe4df3fdf13500ba8faaada298ffe8db9e86f2 100644 (file)
@@ -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())