Skip to content

Commit

Permalink
VM repair 1.0.7 (#7786)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwuae1 committed Jul 10, 2024
1 parent c043087 commit 0d56452
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/vm-repair/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

Release History
===============
1.0.7
++++++
az command adjustment

1.0.6
++++++
Add CLI update wait for ASG to wait for the operation done as the async 2rd operation will cancel the 1st call.
Expand Down
2 changes: 1 addition & 1 deletion src/vm-repair/azext_vm_repair/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ def reset_nic(cmd, vm_name, resource_group_name, yes=False):
_call_az_command(update_ip_command)

# Wait for IP updated
wait_ip_update_command = 'az network nic ip-config wait --updated -g {g} --nic-name {nic} -n ' \
wait_ip_update_command = 'az network nic ip-config wait --updated -g {g} --nic-name {nic}' \
.format(g=resource_group_name, nic=primary_nic_name)
_call_az_command(wait_ip_update_command)

Expand Down
2 changes: 1 addition & 1 deletion src/vm-repair/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "1.0.6"
VERSION = "1.0.7"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 0d56452

Please sign in to comment.