Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/command_modules/azure-cli-container/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Release History
===============

* `container start/restart`: Added `--no-wait` argument.

0.3.13
++++++
* Adding 'az container start' command
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ def load_command_table(self, _):
g.custom_command('attach', 'attach_to_container')

with self.command_group('container', container_group_sdk) as g:
g.command('restart', 'restart')
g.command('restart', 'restart', supports_no_wait=True)
g.command('stop', 'stop')
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stop doesn't need a no wait?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No. As far as I can tell, it is never long-running.

g.command('start', 'start')
g.command('start', 'start', supports_no_wait=True)