carterkozak commented on pull request #207: URL: https://github.com/apache/httpcomponents-core/pull/207#issuecomment-670046860
> Does it work when you increase the timeout? No, the problem is that we're able to write a chunk to the socket output stream after `available()` has returned zero. The send buffer is full and blocking waiting for the server to read bytes, however the server has already rejected the request and started to send a response. At this point he client is still trying to send request bytes, and isn't consuming the servers response, so the exchange will end with a timeout. > How often does it occur? I am able to reproduce the failure every time using a fast linux system and jdk14. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
