Large response entity is truncated over https with 'Connection: close' header #1219
Labels
3 - in progress
Someone is working on this ticket
bug
help wanted
Identifies issues that the core team will likely not have time to work on
t:core
Issues related to the akka-http-core module
Milestone
When a client sends
Connection: close
header and response entity is large, the entity gets truncated overhttps
. It is ok withhttp
. We see this behaviour only with larger entities. Please see below reproducer:With the following commands, I see the entire entity is retrieved:
curl -kv https://localhost:8443/
curl -v http://localhost:8080/ -H 'Connection: close'
curl -v http://localhost:8080/
However, when the
Connection: close'
header is sent and the protocol ishttps
, the entity gets truncated:curl -kv https://localhost:8443/ -H 'Connection: close'
The text was updated successfully, but these errors were encountered: