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
Based on looking at the code, my guess is that the test server doesn't respond when the request has trailers. I haven't tried it though.
We only do sendReply() when end_stream is true in decodeHeaders or decodeBody: https://github.com/envoyproxy/nighthawk/blob/main/source/server/http_test_server_filter.cc
sendReply()
end_stream
decodeHeaders
decodeBody
If the request has trailers, my guess is is:
The integration test fixture we're using doesn't appear to support adding request trailers.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Based on looking at the code, my guess is that the test server doesn't respond when the request has trailers. I haven't tried it though.
We only do
sendReply()
whenend_stream
is true indecodeHeaders
ordecodeBody
:https://github.com/envoyproxy/nighthawk/blob/main/source/server/http_test_server_filter.cc
If the request has trailers, my guess is is:
The integration test fixture we're using doesn't appear to support adding request trailers.
The text was updated successfully, but these errors were encountered: