aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_loop.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/cowboy_loop.erl')
-rw-r--r--src/cowboy_loop.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cowboy_loop.erl b/src/cowboy_loop.erl
index 8920299..f0b2886 100644
--- a/src/cowboy_loop.erl
+++ b/src/cowboy_loop.erl
@@ -161,13 +161,14 @@ call(Req, State=#state{resp_sent=RespSent},
cowboy_req:maybe_reply(Stacktrace, Req)
end,
cowboy_handler:terminate({crash, Class, Reason}, Req, HandlerState, Handler),
- erlang:Class([
+ exit({cowboy_handler, [
+ {class, Class},
{reason, Reason},
{mfa, {Handler, info, 3}},
{stacktrace, Stacktrace},
{req, cowboy_req:to_list(Req)},
{state, HandlerState}
- ])
+ ]})
end.
%% It is sometimes important to make a socket passive as it was initially