The Node class has a potential deadlock condition in getLeavingTransitionsMap() if multiple users attempt to leave the same node at the same time. The leavingTransitionMap.put() method isn't thread safe so multiple threads can deadlock there.
Other configuration methods are not thread safe but they don't matter because they are only called one time at startup. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179865#4179865 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4179865 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
