You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, the code thought there is an extra \r\n between 0\r\n and Trailer-Header-A: foo\r\n, so it consumes two more chars from the first header at the end of chunked body parsing, then the first parsed header becomes a truncated version: ailer-Header-A: foo\r\n.
The trailer headers should be in the following format:
However, the code thought there is an extra
\r\n
between0\r\n
andTrailer-Header-A: foo\r\n
, so it consumes two more chars from the first header at the end of chunked body parsing, then the first parsed header becomes a truncated version:ailer-Header-A: foo\r\n
.lua-resty-http/lib/resty/http.lua
Lines 486 to 489 in 4ab4269
lua-resty-http/t/04-trailers.t
Lines 79 to 86 in 4ab4269
The text was updated successfully, but these errors were encountered: