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.
2 parents c27a529 + 3cca2d1 commit eec688cCopy full SHA for eec688c
lib/sentry/phoenix_endpoint.ex
@@ -27,8 +27,8 @@ defmodule Sentry.Phoenix.Endpoint do
27
try do
28
super(conn, opts)
29
catch
30
- kind, %Phoenix.Router.NoRouteError{} ->
31
- :erlang.raise(kind, %Phoenix.Router.NoRouteError{}, __STACKTRACE__)
+ kind, %Phoenix.Router.NoRouteError{} = reason ->
+ :erlang.raise(kind, reason, __STACKTRACE__)
32
33
kind, reason ->
34
stacktrace = __STACKTRACE__
0 commit comments