Skip to content

Commit

Permalink
Fix #17184 : Get-AzWebApp to return SiteConfig details in the respo…
Browse files Browse the repository at this point in the history
…nse when requested the WebApps under subscreption
  • Loading branch information
Kotasudhakarreddy committed Mar 1, 2022
1 parent fbc35fd commit 96a4d28
Show file tree
Hide file tree
Showing 3 changed files with 22,753 additions and 1,881 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Websites/Websites/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release

* Fixed `Get-AzWebApp` to return SiteConfig details in the response when requested the WebApps under subscreption #17184
## Version 2.10.0
* Updated `New-AzAppServicePlan` to create an app service plan with host environment id #16094

Expand Down
1 change: 1 addition & 0 deletions src/Websites/Websites/Cmdlets/WebApps/GetAzureWebApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ private void GetBySubscription()
{
foreach(var item in result)
{
WebsitesClient.GetWebAppConfiguration(rg, item.Name, null, item);
list.Add(new PSSite(item));
}
}
Expand Down

0 comments on commit 96a4d28

Please sign in to comment.