mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-08 07:53:20 +00:00
When a request is shed due to exceeding the number of max concurrent requests, only its header was actually read, and the body was still stuck in the socket - and would be read in the next iteration, which would expect to actually read a new request header. Instead, the whole message is now skipped, so that a new request can be correctly read and parsed. Refs #8193