Skip to content

Commit

Permalink
Pre release list parse fix (#108)
Browse files Browse the repository at this point in the history
* fix unexpected symbol when parsing lists (#107)

* history
  • Loading branch information
sunnycarter authored Oct 6, 2023
1 parent f48827b commit 1f90521
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/aosm/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ upcoming
* NB CHANGE TO PREVIOUS CONFIG FILE FORMAT FOR NSDs
- Added publisher scope and removed publisher resource group from network function object, as now using proxy references
* Fix CNF image import from cross-subscription ACR
* Fix unexpected bracket symbol added to list deployParameters during list parsing

0.2.0
++++++
Breaking change to commands - now use `nfd` instead of `definition`. Publish option removed from build.
Expand Down
2 changes: 1 addition & 1 deletion src/aosm/azext_aosm/generate_nfd/cnf_nfd_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ def _replace_values_with_deploy_params(
param_name = (
f"{param_prefix}_{k}_{index}"
if param_prefix
else f"{k})_{index}"
else f"{k}_{index}"
)
if isinstance(item, dict):
final_values_mapping_dict[k].append(
Expand Down

0 comments on commit 1f90521

Please sign in to comment.