Filter user issues from Sentry

(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc)

Co-authored-by: Qstick <qstick@gmail.com>
pull/2767/head
servarr[bot] 1 year ago committed by GitHub
parent 33fbd95707
commit 73b3b1848b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -43,7 +43,13 @@ namespace NzbDrone.Common.Instrumentation.Sentry
"OutOfMemoryException", "OutOfMemoryException",
// Filter out people stuck in boot loops // Filter out people stuck in boot loops
"CorruptDatabaseException" "CorruptDatabaseException",
// Filter SingleInstance Termination Exceptions
"TerminateApplicationException",
// User config issue, root folder missing, etc.
"DirectoryNotFoundException"
}; };
public static readonly List<string> FilteredExceptionMessages = new List<string> public static readonly List<string> FilteredExceptionMessages = new List<string>

Loading…
Cancel
Save