Skip to content

Commit

Permalink
Fixed inventory item issue in connectedvmware az cli extension. (#4162)
Browse files Browse the repository at this point in the history
Co-authored-by: Santosh Mishra <sanmishra@microsoft.com>
  • Loading branch information
93mishra and sanmishra18 committed Nov 26, 2021
1 parent 4e9a124 commit 07f131a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/connectedvmware/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.1.5
++++++
* Fixed inventory item id issue.

0.1.4
++++++
* Add vm extension support.
Expand Down
1 change: 1 addition & 0 deletions src/connectedvmware/azext_connectedvmware/vmware_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def get_resource_id(
_resource_id = None
if child_type_1 and child_name_1:
if not is_valid_resource_id(child_name_1):
resource = resource.split('/')[-1]
_resource_id = resource_id(
subscription=get_subscription_id(cmd.cli_ctx),
resource_group=resource_group_name,
Expand Down
2 changes: 1 addition & 1 deletion src/connectedvmware/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.

VERSION = '0.1.4'
VERSION = '0.1.5'

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

0 comments on commit 07f131a

Please sign in to comment.