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 8732a4b commit 29c1671Copy full SHA for 29c1671
src/Platforms/Exceptionless.AspNetCore/ExceptionlessMiddleware.cs
@@ -18,7 +18,7 @@ public async Task Invoke(HttpContext context) {
18
await _next(context);
19
} catch (Exception ex) {
20
if (context.RequestAborted.IsCancellationRequested)
21
- return;
+ throw;
22
23
var contextData = new ContextData();
24
contextData.MarkAsUnhandledError();
0 commit comments