You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Gary Tully (JIRA)" <ji...@apache.org> on 2010/05/05 18:52:35 UTC

[jira] Resolved: (AMQ-1484) PooledConnection.close() doesn't always close the ActiveMQConnection

     [ https://issues.apache.org/activemq/browse/AMQ-1484?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gary Tully resolved AMQ-1484.
-----------------------------

    Resolution: Working as Designed

> PooledConnection.close() doesn't always close the ActiveMQConnection
> --------------------------------------------------------------------
>
>                 Key: AMQ-1484
>                 URL: https://issues.apache.org/activemq/browse/AMQ-1484
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 5.0.0
>            Reporter: Alex Burgel
>            Priority: Minor
>             Fix For: AGING_TO_DIE
>
>
> using snapshot apache-activemq-5.0-20071028.173739-45
> if you call org.apache.activemq.pool.PooledConnection.close(), it calls ConnectionPool.decrementReferenceCount()
> this updates the lastUsed time and decrements the ref count, which if its now zero, calls expiredCheck();
> in this case, ConnectionPool.expiredCheck() will only close the connection if hasFailed or hasExpired is true (it won't close based on idle time because you've just updated lastUsed)
> which means that in a lot of cases it won't actually close the connection. if you are shutting down the JVM, the connection must be closed otherwise there will be a non-daemon thread still waiting around which will prevent everything from shutting down cleanly.
> to fix, i think if ref count is zero, then it should always close().

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.