Skip to content

Commit

Permalink
feat: change definition of medium req body
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Aug 2, 2018
1 parent a22dd8a commit e8a3ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry_sdk/integrations/_wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def extract_into_event(self, event, client_options):
if (
bodies == "never"
or (bodies == "small" and self.content_length > 10 ** 3)
or (bodies == "medium" and self.content_length > 10 ** 6)
or (bodies == "medium" and self.content_length > 10 ** 4)
):
data = AnnotatedValue(
"",
Expand Down

0 comments on commit e8a3ff0

Please sign in to comment.