Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/spring/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Release History
===============
1.27.2
---
* Fix clean up config file patterns of Application Configuration Service.

1.27.1
---
* Support scenario of bringing your own container image for command `az spring export`.
Expand Down
4 changes: 2 additions & 2 deletions src/spring/azext_spring/_deployment_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ def _get_apms(self, apms=None, **_):
return apms

def _get_addon_configs(self, config_file_patterns=None, custom_actuator_port=None, custom_actuator_path=None, **_):
if not any([config_file_patterns, custom_actuator_port, custom_actuator_path]):
if config_file_patterns is None and custom_actuator_port is None and custom_actuator_path is None:
return None
addon_configs = {}
if config_file_patterns:
if config_file_patterns is not None:
addon_configs[APPLICATION_CONFIGURATION_SERVICE_NAME] = {
APPLICATION_CONFIGURATION_SERVICE_PROPERTY_PATTERN: config_file_patterns
}
Expand Down
2 changes: 1 addition & 1 deletion src/spring/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 = '1.27.1'
VERSION = '1.27.2'

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