Skip to content

Commit

Permalink
fix: 🐛 App Table output (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwzho authored Aug 11, 2021
1 parent 333e0cd commit 9b6ae7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/spring-cloud/azext_spring_cloud/_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def transform_app_table_output(result):
for item in result:
item['Public Url'] = item['properties']['url']

if 'activeDeployment' in item['properties']:
if 'activeDeployment' in item['properties'] and item['properties']['activeDeployment']:
item['Production Deployment'] = item['properties']['activeDeployment']['name']
_apply_deployment_table(item, item['properties']['activeDeployment'])

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

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '2.7.0-enterprise'
VERSION = '2.7.0a1'

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

0 comments on commit 9b6ae7b

Please sign in to comment.