Skip to content

Commit

Permalink
1.0.4 (#7495)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwuae1 committed Apr 15, 2024
1 parent 4b8ae2d commit a974418
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/vm-repair/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

Release History
===============
1.0.4
++++++
Logging improvements and script fixing

1.0.3
++++++
Expand Down
1 change: 1 addition & 0 deletions src/vm-repair/azext_vm_repair/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,7 @@ def run(cmd, vm_name, resource_group_name, run_id=None, repair_vm_id=None, custo
return_dict = command.init_return_dict()
return_dict['script_status'] = command.script.status
return_dict['logs'] = stdout
return_dict['err'] = stderr
return_dict['log_full_path'] = log_fullpath
return_dict['output'] = command.script.output
return_dict['vm_name'] = repair_vm_name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ if ($hyperv.Installed -and $hypervTools.Installed -and $hypervPowerShell.Install
# Suppress the prompt for "Do you want to allow your PC to be discoverable by other PCs and devices on this network"
$return = new-item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" -Force
"END: Creating nested guest VM" | out-file -FilePath $logFile -Append
$return.ExitCode
write-host $return.ExitCode
return $STATUS_SUCCESS
}
catch {
throw $_
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.3"
VERSION = "1.0.4"

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

0 comments on commit a974418

Please sign in to comment.