I think I've found a tiny typo in the JMSContainerInvoker plugin.  While
diagnosing
a configuration problem I saw JBoss throw a NullPointerExcpetion.
Digging down,
it looks like someone said '==' when they meant '!='...  (code relative
to 2.2.1)

--- jboss/src/main/org/jboss/ejb/plugins/jms/JMSContainerInvoker.java
Fri Mar
 2 09:57:58 2001
***************
*** 351,357 ****
        }

        try {
!           if(connection != null)
                connection.stop();
        }catch(Exception cs) {
            Logger.log("Could not stop JMSContainerInvoker consumer:" +
cs);
--- 351,357 ----
        }

        try {
!           if(connection == null)
                connection.stop();
        }catch(Exception cs) {
            Logger.log("Could not stop JMSContainerInvoker consumer:" +
cs);

Chree



_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to