-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add php max_request_body_size #1281
Conversation
##### max_request_body_size | ||
|
||
This option represents the size limit in bytes beyond which the body of the request is not captured. Default value is `medium`. Possible values are `none` = never send body, `small`, `medium`, `alawys` = always send the body, no matter how large it is. | ||
The values are chosen like this on purpose since the SDK internally can define what the exact limits are. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still not sure what those values mean. Maybe add some ranges? or current values?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is an attempt to allow us to change this without 'breaking' customers.
Today you'd need to read the code to see what we consider small
, medium
etc.
i.e:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ this
Co-Authored-By: Kamil Ogórek <[email protected]>
Merging so it won't get stuck. |
No description provided.