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
When sending payload from client to Hyper server using POST, but not reading the body when handling the Request, the body is never consumed from the buffered network stream. If the connection stays alive, and the next message is sent, the body of the previous message is going to mess up the following message, like this:
When sending payload from client to Hyper server using POST, but not reading the body when handling the Request, the body is never consumed from the buffered network stream. If the connection stays alive, and the next message is sent, the body of the previous message is going to mess up the following message, like this:
I think we should consume the body after the request has been handled (row 212 of https://github.com/hyperium/hyper/blob/master/src/server/mod.rs ), and after it's clear we'll continue the loop (row 219).
The text was updated successfully, but these errors were encountered: