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 a22dd8a commit e8a3ff0Copy full SHA for e8a3ff0
sentry_sdk/integrations/_wsgi.py
@@ -65,7 +65,7 @@ def extract_into_event(self, event, client_options):
65
if (
66
bodies == "never"
67
or (bodies == "small" and self.content_length > 10 ** 3)
68
- or (bodies == "medium" and self.content_length > 10 ** 6)
+ or (bodies == "medium" and self.content_length > 10 ** 4)
69
):
70
data = AnnotatedValue(
71
"",
0 commit comments