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
caught by @RichardLitt documentation efforts:
https://github.com/ipfs/http-api-spec/blob/master/apiary.apib#L2938-L2942
The text was updated successfully, but these errors were encountered:
So I found out a bit more about this. According to the http spec these are equivalent:
http
HTTP/1.1 200 OK\r\n Transfer-Encoding: chunked\r\n Transfer-Encoding: chunked\r\n
should be the same as
HTTP/1.1 200 OK\r\n Transfer-Encoding: chunked, chunked\r\n
So the question is, are we actually double chunking our responses, and if so why?
This is also making some problems for me as I'm trying to use rust http libraries which are not yet able to handle this:
Transfer-Encoding: chunked
Sorry, something went wrong.
Okay, so we're sending the transfer encoding twice... which is wrong. but we arent doing double chunked encoding. I'll take a look
Resolved by #2465. If not please reopen.
No branches or pull requests
caught by @RichardLitt documentation efforts:
https://github.com/ipfs/http-api-spec/blob/master/apiary.apib#L2938-L2942
The text was updated successfully, but these errors were encountered: