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
Currently this server doesn't hold open accepted sockets, except for the SSE handler. According to the specification, we should be holding open accepted sockets when the header Connection: keep-alive is part of a request. This will require selecting any kept alive sockets along with the Server.sock property to then dispatch requests as they arrive.
note: This requires that all incoming requests contain a Content-Length header, as chunked encoding is not supported at this time.
The text was updated successfully, but these errors were encountered:
Currently this server doesn't hold open accepted sockets, except for the SSE handler. According to the specification, we should be holding open accepted sockets when the header
Connection: keep-alive
is part of a request. This will requireselect
ing any kept alive sockets along with theServer.sock
property to then dispatch requests as they arrive.note: This requires that all incoming requests contain a
Content-Length
header, as chunked encoding is not supported at this time.The text was updated successfully, but these errors were encountered: