From 78d0bab8d6f04490f4079a9ac196756721248653 Mon Sep 17 00:00:00 2001 From: Joshua Blanch Date: Tue, 29 Apr 2025 20:15:51 +0000 Subject: [PATCH] orch/module: alias unpause command with orch resume Signed-off-by: Joshua Blanch --- src/pybind/mgr/orchestrator/module.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pybind/mgr/orchestrator/module.py b/src/pybind/mgr/orchestrator/module.py index 779eac9d56d..24ba012ec14 100644 --- a/src/pybind/mgr/orchestrator/module.py +++ b/src/pybind/mgr/orchestrator/module.py @@ -2300,6 +2300,12 @@ Usage: self.resume() return HandleCommandResult() + @_cli_write_command('orch unpause') + def _unpause(self) -> HandleCommandResult: + """Alias to orch resume""" + self.resume() + return HandleCommandResult() + @_cli_write_command('orch cancel') def _cancel(self) -> HandleCommandResult: """ -- 2.39.5