[
https://issues.apache.org/jira/browse/HTTPCORE-592?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16909799#comment-16909799
]
Linton Miller commented on HTTPCORE-592:
----------------------------------------
Pull request to remove the offending code:
https://github.com/apache/httpcomponents-core/pull/140
> LaxConnPool incorrectly notifies pool listener of lease on release
> ------------------------------------------------------------------
>
> Key: HTTPCORE-592
> URL: https://issues.apache.org/jira/browse/HTTPCORE-592
> Project: HttpComponents HttpCore
> Issue Type: Bug
> Components: HttpCore
> Affects Versions: 5.0-beta8
> Reporter: Linton Miller
> Priority: Trivial
> Time Spent: 10m
> Remaining Estimate: 0h
>
> The release method of LaxConnPool has a stray listener.onLease call that
> should be there in the release method:
>
> {code:java}
> public void release(final PoolEntry<T, C> entry, final boolean reusable) {
> ...
> final PerRoutePool<T, C> routePool = getPool(entry.getRoute());
> if (connPoolListener != null) {
> connPoolListener.onLease(entry.getRoute(), this);
> }
> routePool.release(entry, reusable);
> }
> {code}
>
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]