-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
http3: initialize trailer map with empty trailer entries when parsing the header #4656
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4656 +/- ##
==========================================
+ Coverage 84.88% 84.90% +0.01%
==========================================
Files 150 150
Lines 14918 14930 +12
==========================================
+ Hits 12663 12675 +12
Misses 1727 1727
Partials 528 528 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM modulo one naming / comment suggestion.
@sudorandom I just merged #4630. Can you rebase this PR? |
ac8ffbd
to
7d37ded
Compare
Yep, rebased! |
This should resolve #4654
This RP changes the client logic to prepopulates
Response.Trailer
using the trailers defined in the "Trailer" header and then removes the trailer header, like net/http does.This is based off of #4630, so only the last few commits are unique.