Filter OOM from sentry

This commit is contained in:
ta264
2019-10-24 21:42:41 +01:00
parent 490e42015b
commit ea56775fa6
2 changed files with 4 additions and 1 deletions

View File

@@ -22,7 +22,8 @@ namespace NzbDrone.Common.Test.InstrumentationTests
private static Exception[] FilteredExceptions = new Exception[] {
new UnauthorizedAccessException(),
new TinyIoC.TinyIoCResolutionException(typeof(string))
new TinyIoC.TinyIoCResolutionException(typeof(string)),
new OutOfMemoryException()
};
[SetUp]