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
Spirit tries to add Content-Length: 0 to the response headers, but those also get added to headers.cors, making all bodies that will ever be sent vanish.
The text was updated successfully, but these errors were encountered:
There's a small bug/unexpected behavior in this function.
Minimal Repro
Request 1:
curl "http://127.0.0.1:8080"
Request 2:
curl "http://127.0.0.1:8080/bug"
Retry request 1:
curl "http://127.0.0.1:8080"
What exactly happens?
Spirit tries to add
Content-Length: 0
to the response headers, but those also get added toheaders.cors
, making all bodies that will ever be sent vanish.The text was updated successfully, but these errors were encountered: