[jboss-dev-forums] [Design of POJO Server] - Re: What's the status of HEAD?

adrian@jboss.org do-not-reply at jboss.com
Wed Aug 23 12:26:35 EDT 2006


I think Bill is referring to this?
"
Author: wolfc
Date: 2006-08-16 12:04:56 -0400 (Wed, 16 Aug 2006)
New Revision: 55992

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/JmxKernelAbstraction.java
Log:
uninstallation in the correct order

Modified: trunk/ejb3/src/main/org/jboss/ejb3/JmxKernelAbstraction.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/JmxKernelAbstraction.java        2006-08-16 15:38:48 UTC (rev 55991)
+++ trunk/ejb3/src/main/org/jboss/ejb3/JmxKernelAbstraction.java        2006-08-16 16:04:56 UTC (rev 55992)
@@ -145,11 +145,11 @@
    {
       try
       {
-         server.unregisterMBean(on);
-         removeParentDependency(on);
          serviceController.stop(on);
          serviceController.destroy(on);
          serviceController.remove(on);
+         removeParentDependency(on);
+         server.unregisterMBean(on);
       }
       catch (Exception e)
       {
"

If there isn't a clear bug report/test, not an "IT IS BROKEN"
then the problem doesn't exist AFAIC. :-)

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3967036#3967036

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3967036



More information about the jboss-dev-forums mailing list