You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Dejan Bosanac (JIRA)" <ji...@apache.org> on 2010/12/02 14:11:38 UTC

[jira] Updated: (AMQ-2225) PooledConnection obtaind from PooledConnectionFactory overwrites ExceptionListener

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

Dejan Bosanac updated AMQ-2225:
-------------------------------

    Fix Version/s:     (was: 5.4.2)
                   5.5.0

> PooledConnection obtaind from PooledConnectionFactory overwrites ExceptionListener
> ----------------------------------------------------------------------------------
>
>                 Key: AMQ-2225
>                 URL: https://issues.apache.org/jira/browse/AMQ-2225
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 5.2.0
>            Reporter: Lukasz Zielinski
>            Priority: Minor
>             Fix For: 5.5.0
>
>
> When multiple connections are obtained from PooledConnectionFactory and ExceptionListeners are set for them only one ExceptionListener will be notified about connection problems. Issue is caused by overwriting listeners in shared connection.
> Test case based on http://svn.apache.org/viewvc/activemq/trunk/activemq-pool/src/test/java/org/apache/activemq/pool/PooledTopicPublisherTest.java?view=markup
> public void testSetGetExceptionListener2() throws Exception {
>         PooledConnectionFactory pcf = new PooledConnectionFactory();
>         pcf.setConnectionFactory(new ActiveMQConnectionFactory("vm://test"));
>         TopicConnection conn1 = (TopicConnection) pcf.createConnection();
>         ExceptionListener list1 = new ExceptionListener() {
>             public void onException(JMSException exception) {
>             }
>         };
>         conn1.setExceptionListener(list1);
>         TopicConnection conn2 = (TopicConnection) pcf.createConnection();
>         ExceptionListener list2 = new ExceptionListener() {
>             public void onException(JMSException exception) {
>             }
>         };
>         conn2.setExceptionListener(list2);
>         assertEquals(list1, conn1.getExceptionListener());//this assertion will fail
>         assertEquals(list2, conn2.getExceptionListener());//this assertion will pass
>         assertEquals(list2, conn1.getExceptionListener());// THE PROBLEM - this will pass
> } 

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