Skip to content

Commit

Permalink
[SCVMM] Fix VMM Server Connect command 1.1.1 release (#7841)
Browse files Browse the repository at this point in the history
* add vmmserver props field

* updated release history for v1.1.1

* update version in setup.py
  • Loading branch information
hsurana06 authored Aug 1, 2024
1 parent a4a91d6 commit 9415618
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/scvmm/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.1.1
++++++
* [Hotfix] Fixed VMMServer connect command parameter error.

1.1.0
++++++
* Security upgrades and fixes.
Expand Down
9 changes: 6 additions & 3 deletions src/scvmm/azext_scvmm/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
VirtualNetwork,
VirtualNetworkProperties,
VmmServer,
VmmServerProperties,
VmmCredential,
AllocationMethod,
NetworkInterface,
Expand Down Expand Up @@ -207,10 +208,12 @@ def connect_vmmserver(
vmmserver = VmmServer(
location=location,
extended_location=get_extended_location(custom_location_id),
fqdn=fqdn,
port=port,
credentials=username_creds,
tags=tags,
properties=VmmServerProperties(
fqdn=fqdn,
credentials=username_creds,
port=port,
),
)

return sdk_no_wait(
Expand Down
2 changes: 1 addition & 1 deletion src/scvmm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

logger.warn("Wheel is not available, disabling bdist_wheel hook")

VERSION = '1.1.0'
VERSION = '1.1.1'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 9415618

Please sign in to comment.