Skip to content

Commit 2f56c57

Browse files
authored
Merge pull request ceph#63048 from JoshuaGabriel/joshua_71135
orch/module: Make orch unpause an alias for orch resume Reviewed-by: Adam King <[email protected]>
2 parents 0f6c96e + 78d0bab commit 2f56c57

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/pybind/mgr/orchestrator/module.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2307,6 +2307,12 @@ def _resume(self) -> HandleCommandResult:
23072307
self.resume()
23082308
return HandleCommandResult()
23092309

2310+
@_cli_write_command('orch unpause')
2311+
def _unpause(self) -> HandleCommandResult:
2312+
"""Alias to orch resume"""
2313+
self.resume()
2314+
return HandleCommandResult()
2315+
23102316
@_cli_write_command('orch cancel')
23112317
def _cancel(self) -> HandleCommandResult:
23122318
"""

0 commit comments

Comments
 (0)