Skip to content

Commit

Permalink
[Containerapp] Fix #29330: az containerapp auth update: Fix split l…
Browse files Browse the repository at this point in the history
…ogic for `--set` (#29453)
  • Loading branch information
Greedygre committed Jul 24, 2024
1 parent 659bc1d commit d146cf9
Show file tree
Hide file tree
Showing 3 changed files with 416 additions and 468 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ def create_new_acr(cmd, registry_name, resource_group_name, location=None, sku="

def set_field_in_auth_settings(auth_settings, set_string):
if set_string is not None:
split1 = set_string.split("=")
split1 = set_string.split("=", 1)
fieldName = split1[0]
fieldValue = split1[1]
split2 = fieldName.split(".")
Expand Down
Loading

0 comments on commit d146cf9

Please sign in to comment.