Skip to content

Commit

Permalink
update 'az webapp up' app service environment logic for API change
Browse files Browse the repository at this point in the history
  • Loading branch information
StrawnSC committed Jun 9, 2022
1 parent 7402e90 commit 2bf5636
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def _validate_ase_is_v3(ase):


def _validate_ase_not_ilb(ase):
if ase.internal_load_balancing_mode != 0:
if (ase.internal_load_balancing_mode != 0) and (ase.internal_load_balancing_mode != "None"):
raise ValidationError("Internal Load Balancer (ILB) App Service Environments not supported")


Expand Down

0 comments on commit 2bf5636

Please sign in to comment.