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 c27a529 commit 3cca2d1Copy full SHA for 3cca2d1
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