Filter user issues from Sentry

This commit is contained in:
Qstick 2023-07-30 11:23:06 -05:00 committed by GitHub
parent 560779cc1e
commit 2f553117fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -40,7 +40,10 @@ namespace NzbDrone.Common.Instrumentation.Sentry
"UnauthorizedAccessException",
// Filter out people stuck in boot loops
"CorruptDatabaseException"
"CorruptDatabaseException",
// Filter SingleInstance Termination Exceptions
"TerminateApplicationException"
};
public static readonly List<string> FilteredExceptionMessages = new List<string>