Skip to content

Commit fd2e473

Browse files
authored
Fix ignored exception in the default filter (#884)
I noticed the `Plug.Parsers.RequestTooLarge` atom does not exists in the `Plug` repo. It seems to be overlooked in PR #550.
1 parent ebda03f commit fd2e473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sentry/default_event_filter.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Sentry.DefaultEventFilter do
55
Plug.Conn.InvalidQueryError,
66
Plug.Parsers.BadEncodingError,
77
Plug.Parsers.ParseError,
8-
Plug.Parsers.RequestTooLarge,
8+
Plug.Parsers.RequestTooLargeError,
99
Plug.Parsers.UnsupportedMediaTypeError,
1010
Plug.Static.InvalidPathError
1111
]

0 commit comments

Comments
 (0)