[
https://issues.apache.org/jira/browse/HTTPCORE-592?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Oleg Kalnichevski resolved HTTPCORE-592.
----------------------------------------
Resolution: Fixed
Fix Version/s: 5.0-beta9
> 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
> Fix For: 5.0-beta9
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> The release method of LaxConnPool has a stray listener.onLease call that
> should not 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]