We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
auto_decompress can be disabled for client but unfortunately not for server.
Export the API (I'm going to open a PR few minutes after filing this issue)
The feature can be hacked by setting AIOHTTP_NO_EXTENSIONS=true and
AIOHTTP_NO_EXTENSIONS=true
request_handler_init = web.RequestHandler.__init__ def disable_decompression(self, *args, **kwargs): request_handler_init(self, *args, **kwargs) self._request_parser._auto_decompress = False web.RequestHandler.__init__ = disable_decompression
but that is ugly and slow.
Server
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is your feature request related to a problem?
auto_decompress can be disabled for client but unfortunately not for server.
Describe the solution you'd like
Export the API (I'm going to open a PR few minutes after filing this issue)
Describe alternatives you've considered
The feature can be hacked by setting
AIOHTTP_NO_EXTENSIONS=true
andbut that is ugly and slow.
Related component
Server
Additional context
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: