If you hit a sample app running on Kestrel with ab (apache bench which makes HTTP/1.0 requests), every request times out. This is caused by Kestrel becoming stuck on `await messageBody.Consume()` in `Frame.RequestProcessingAsync`. I think we fix this by simply not consuming the rest of the request for non keep-alive connections.
If you hit a sample app running on Kestrel with ab (apache bench which makes HTTP/1.0 requests), every request times out.
This is caused by Kestrel becoming stuck on
await messageBody.Consume()inFrame.RequestProcessingAsync.I think we fix this by simply not consuming the rest of the request for non keep-alive connections.