Skip to content

Commit e8a3ff0

Browse files
committed
feat: change definition of medium req body
1 parent a22dd8a commit e8a3ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/_wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def extract_into_event(self, event, client_options):
6565
if (
6666
bodies == "never"
6767
or (bodies == "small" and self.content_length > 10 ** 3)
68-
or (bodies == "medium" and self.content_length > 10 ** 6)
68+
or (bodies == "medium" and self.content_length > 10 ** 4)
6969
):
7070
data = AnnotatedValue(
7171
"",

0 commit comments

Comments
 (0)