-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Allow to skip header autogeneration #379
Comments
+1 for this, I've encountered this issue porting library from In my case |
+1 for skip, -1 for |
@fafhrd91 would you propose another schema for skipping headers? |
just keyword argument |
why not reusing the
|
Content-Type header automatic generation did not honor the documented `skip_auto_headers` param. With this patch we correctly skip generation of this header while documenting that it is not possible to do so for the `Content-Length` header. See Issue aio-libs#379 for details.
This one got fixed by pull request #507 IMO |
Sure, thanks |
I guess to skip generation of headers like
CONTENT-TYPE
etc. ifheaders['CONTENT-TYPE'] = None
.It may be implemented on both client and server sides.
The text was updated successfully, but these errors were encountered: