From ccbf27c5fa3979d90dceaef124985f44f2628354 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 6 Dec 2021 15:40:14 +0100 Subject: [PATCH] Do not track operation cancelled. --- .../APM/Stackdriver/StackdriverExceptionHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/extensions/Squidex.Extensions/APM/Stackdriver/StackdriverExceptionHandler.cs b/backend/extensions/Squidex.Extensions/APM/Stackdriver/StackdriverExceptionHandler.cs index 8bd8ff1b5..b0aacfaed 100644 --- a/backend/extensions/Squidex.Extensions/APM/Stackdriver/StackdriverExceptionHandler.cs +++ b/backend/extensions/Squidex.Extensions/APM/Stackdriver/StackdriverExceptionHandler.cs @@ -54,7 +54,7 @@ namespace Squidex.Extensions.APM.Stackdriver { try { - if (exception != null && exception is not DomainException) + if (exception != null && exception is not DomainException && exception is not OperationCanceledException) { logger.Log(exception, httpContextWrapper); }