From 6548f4b1b7bc1bd094f8e3d5a52c7f46b2cc5ff4 Mon Sep 17 00:00:00 2001 From: ta264 Date: Thu, 14 Mar 2019 02:08:29 +0000 Subject: [PATCH] Fixed: Filter TinyIoC.TinyIoCResolutionException from Sentry --- src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs index 9384f45f4..4d5e736ab 100644 --- a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs +++ b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs @@ -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 FilteredExceptionMessages = new List {