Browse Source

Do not track operation cancelled.

pull/808/head
Sebastian 4 years ago
parent
commit
ccbf27c5fa
  1. 2
      backend/extensions/Squidex.Extensions/APM/Stackdriver/StackdriverExceptionHandler.cs

2
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);
}

Loading…
Cancel
Save