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 2009/07/23 15:00:35 UTC

[jira] Resolved: (AMQ-2069) Thread deadlock in ActiveMQEndpointWorker class

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

Dejan Bosanac resolved AMQ-2069.
--------------------------------

       Resolution: Fixed
    Fix Version/s: 5.3.0
         Assignee: Dejan Bosanac

Patch applied in SVN revision 797052 with thanks 

> Thread deadlock in ActiveMQEndpointWorker class
> -----------------------------------------------
>
>                 Key: AMQ-2069
>                 URL: https://issues.apache.org/activemq/browse/AMQ-2069
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.3.0
>            Reporter: Ivan
>            Assignee: Dejan Bosanac
>             Fix For: 5.3.0
>
>         Attachments: AMQ-2069.patch
>
>
> It will happen when one thread is in a loop to try to connect the broker, in the meanwhile another thread calls the stop action.
> Thread A (in the run() method) holds the connectWork, and requires the shutdownMutex when it is notified by the notifyAll action by ThreadB.
> Thread B (in the stop() method) holds the shutdownMutex, and requires the connectWork in the disconnect method.
> I move the disconnect() invocation out of the synchronized (shutdownMutex) block, it works well.
> Thanks !

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