Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
4.5.5
-
None
Description
Seems we are hitting something similiar to the HTTPCLIENT-1655 issue, where established connections were not properly closed (client sends Reset instead of FIN+ACK)
We are using
BasicHttpClientConnectionManager (4.5.5 httpclient version)
and when we are calling client.close(), we see packet with Reset flag enabled in tcpdump
Looks like here: https://github.com/apache/httpcomponents-client/blob/4.5.x/httpclient/src/main/java/org/apache/http/impl/conn/BasicHttpClientConnectionManager.java#L378
must be closeConnection()
instead of shutdownConnection
This issue is not present if we are using PoolingHttpClientConnectionManager
(in shutdown() there are pool.shutdown:
where for each entry runs: entry.close() -> this.closeConnection();) - we see normal connection close (FIN+ACK)
What do you think about it?
Thank you
Attachments
Issue Links
- links to