We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de700ab commit a436d62Copy full SHA for a436d62
src/Websites/Websites/Cmdlets/BackupRestore/GetAzureDeletedWebApp.cs
@@ -60,10 +60,6 @@ public override void ExecuteCmdlet()
60
}
61
);
62
63
- // Filter out deleted sites older than 30 days.
64
- // They can't be restored and eventually will not be returned by the GetDeletedSites API.
65
- deletedSites = deletedSites.Where(ds => ds.DeletionTime >= DateTime.UtcNow.AddDays(-30)).OrderBy(ds => ds.DeletionTime);
66
-
67
if (!string.IsNullOrEmpty(ResourceGroupName))
68
{
69
0 commit comments