We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fd3b0 commit 8eacbf5Copy full SHA for 8eacbf5
src/Platforms/Exceptionless.AspNetCore/ExceptionlessMiddleware.cs
@@ -17,6 +17,9 @@ public async Task Invoke(HttpContext context) {
17
try {
18
await _next(context);
19
} catch (Exception ex) {
20
+ if (context.RequestAborted.IsCancellationRequested)
21
+ return;
22
+
23
var contextData = new ContextData();
24
contextData.MarkAsUnhandledError();
25
contextData.SetSubmissionMethod(nameof(ExceptionlessMiddleware));
0 commit comments