Skip to content

Commit

Permalink
Bug : classic fw private ranges reverts to default when doing get & s…
Browse files Browse the repository at this point in the history
…et (Azure#20855)

* Bug : classic fw private ranges reverts to default when doing get & set

* Added change log

---------

Co-authored-by: Gizachew Eshetie <v-geshetie@microsoft.com>
Co-authored-by: Beisi Zhou <zhoubeisi@gmail.com>
  • Loading branch information
3 people authored Feb 7, 2023
1 parent d6ba47d commit 8afc22b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Network/Network/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
--->

## Upcoming Release
* Fixed a bug that reverts classic fw private ranges to default when doing get & set

## Version 5.4.0
* Fixed a bug that does not enable to set Perform SNAT to Always
Expand Down
4 changes: 3 additions & 1 deletion src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ public string[] PrivateRange
set
{
if (value != null)
{
ValidatePrivateRange(value);
privateRange = value;
privateRange = value;
}
}
}

Expand Down

0 comments on commit 8afc22b

Please sign in to comment.