Fixed: Filter TinyIoC.TinyIoCResolutionException from Sentry

This commit is contained in:
ta264 2019-03-14 02:08:29 +00:00
commit 6548f4b1b7

View file

@ -38,7 +38,9 @@ namespace NzbDrone.Common.Instrumentation.Sentry
// UnauthorizedAccessExceptions will just be user configuration issues
"UnauthorizedAccessException",
// Filter out people stuck in boot loops
"CorruptDatabaseException"
"CorruptDatabaseException",
// This also filters some people in boot loops
"TinyIoC.TinyIoCResolutionException"
};
private static readonly List<string> FilteredExceptionMessages = new List<string> {