Skip to content

Commit 5ab5143

Browse files
authored
Exclude infinite recursion property (#24701)
1 parent 442a042 commit 5ab5143

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Accounts/Authentication/Sanitizer/Services/DefaultSanitizerService.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ internal class DefaultSanitizerService : ISanitizerService
3434
{ "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", new[] { "FileProperties" } },
3535
{ "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", new[] { "ShareProperties" } },
3636
{ "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory", new[] { "ShareDirectoryProperties" } },
37+
38+
// Skip infinite recursion properties
39+
{ "Microsoft.Azure.PowerShell.Cmdlets.DataProtection.Models.Api20231201.InnerError", new[] { "EmbeddedInnerError" } },
3740
};
3841

3942
private static readonly IEnumerable<string> SensitiveDataPatterns = new List<string>()

0 commit comments

Comments
 (0)