fix(brotli): brotli partial response fix#11087
fix(brotli): brotli partial response fix#11087shreemaan-abhishek merged 1 commit intoapache:masterfrom
Conversation
|
#11079 seems like an error raised due to incompatibility between HTTP headers and HTTP version. Could you please explain what the need for this fix? And test cases are also required. |
|
When client connection is slow, and page is loading in chunks[streaming], the last chuck is getting dropped/overwritten. If one see the code last chuck will contain The fix should be to append the compressed Even if the Test-case of this case is not producible, it will require network throttling with large upstream payload for real scenario. |
|
okay makes sense now, thanks for the apt explanation. |
Description
When there is a chunk in the
eof, brotli plugin overwrite the responsearg[1]. Which results into partial response.Checklist