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
https://datatracker.ietf.org/doc/html/rfc7230#section-3.3
All 1xx (Informational), 204 (No Content), and 304 (Not Modified) responses do not include a message body.
But when receiving e.g. a 204 when using HTTPS the receiving buffer contains '0\r\n'. This will break some http clients.
It is probably related to this bug: #865
But now it only has that behaviour for requests with method HEAD: https://github.com/SpectoLabs/hoverfly/blob/master/vendor/github.com/SpectoLabs/goproxy/https.go#L289
Same as #865
Hoverfly error messages seen (If none, say none)
None
Some clients can't handle this behaviour properly, e.g. jetty-client 12.0.7 for Java.
If possible, add screenshots to help explain your problem
The text was updated successfully, but these errors were encountered:
It's definitely a recursion, I can fix it in the coming release.
Sorry, something went wrong.
#1122 do not set transfer encoding header for 204 response while doin…
f762a37
…g https proxy
5db744a
I got it working with the new version! 👍
No branches or pull requests
Description of the bug
https://datatracker.ietf.org/doc/html/rfc7230#section-3.3
But when receiving e.g. a 204 when using HTTPS the receiving buffer contains '0\r\n'.
This will break some http clients.
It is probably related to this bug: #865
But now it only has that behaviour for requests with method HEAD: https://github.com/SpectoLabs/hoverfly/blob/master/vendor/github.com/SpectoLabs/goproxy/https.go#L289
Steps to reproduce the issue
Same as #865
Observed result
Hoverfly error messages seen (If none, say none)
Some clients can't handle this behaviour properly, e.g. jetty-client 12.0.7 for Java.
If possible, add screenshots to help explain your problem
Expected result
Additional relevant information
The text was updated successfully, but these errors were encountered: