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
httpie incorrectly treats informational responses (102-199) as a final response, printing the response headers and exiting.
$ http :5000/102 HTTP/1.1 102 Processing $
Compare to what actually happens:
$ nc 127.0.0.1 5000 GET /102 HTTP/1.1 HTTP/1.1 102 Processing HTTP/1.1 200 OK …
httpie should print the zero or more informational responses (if response headers are enabled) before printing the final response and exiting.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
psf/requests
httpie incorrectly treats informational responses (102-199) as a final response, printing the response headers and exiting.
Compare to what actually happens:
httpie should print the zero or more informational responses (if response headers are enabled) before printing the final response and exiting.
The text was updated successfully, but these errors were encountered: