From 3be4be3e28698d5048ab1e09164cd1c7f0d15943 Mon Sep 17 00:00:00 2001 From: Adam King Date: Tue, 25 Oct 2022 08:06:08 -0400 Subject: [PATCH] mgr/cephadm: fix upgrade status help message This help message for this command had just been copied over from the `upgrade check` command, which doesn't make sense for `upgrade status` Fixes: https://tracker.ceph.com/issues/57921 Signed-off-by: Adam King (cherry picked from commit 8d6ab95c838efe1a245165c85b28797cbd159b34) --- 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 2288cfeef35c6..eff48e8ca7a06 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -1418,7 +1418,7 @@ Usage: @_cli_write_command('orch upgrade status') def _upgrade_status(self) -> HandleCommandResult: - """Check service versions vs available and target containers""" + """Check the status of any potential ongoing upgrade operation""" completion = self.upgrade_status() status = raise_if_exception(completion) r = { -- 2.39.5