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
Couple of months ago, we started seeing this exception in our logs:
InvalidHeader("Header value 556 must be of type str or bytes, not <type 'int'>",)
Turns out it's the Content-Length header in __init__, which is int; it should be converted to type str.
Content-Length
__init__
str
PR which fixes the issue is ready to merge: #14.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Couple of months ago, we started seeing this exception in our logs:
Turns out it's the
Content-Length
header in__init__
, which is int; it should be converted to typestr
.PR which fixes the issue is ready to merge: #14.
The text was updated successfully, but these errors were encountered: