[jboss-cvs] JBossAS SVN: r74393 - trunk/server/src/main/org/jboss/invocation/unified/server.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jun 11 11:27:24 EDT 2008


Author: bstansberry at jboss.com
Date: 2008-06-11 11:27:24 -0400 (Wed, 11 Jun 2008)
New Revision: 74393

Modified:
   trunk/server/src/main/org/jboss/invocation/unified/server/UnifiedInvoker.java
Log:
[JBAS-5590] Temporarily revert the fix; *possibly* had side effect

Modified: trunk/server/src/main/org/jboss/invocation/unified/server/UnifiedInvoker.java
===================================================================
--- trunk/server/src/main/org/jboss/invocation/unified/server/UnifiedInvoker.java	2008-06-11 15:02:06 UTC (rev 74392)
+++ trunk/server/src/main/org/jboss/invocation/unified/server/UnifiedInvoker.java	2008-06-11 15:27:24 UTC (rev 74393)
@@ -175,12 +175,14 @@
     */
    public void stopService() throws Exception
    {
+      // FIXME -- remove the serverInvoker.stop() once we confirm it
+      // doesn't cause a problem stopping the AS
       // JBAS-5590 -- the serverInvoker is a shared resource and shouldn't
       // be stopped just because we don't want it any more
-//      if(serverInvoker != null)
-//      {
-//         serverInvoker.stop();
-//      }
+      if(serverInvoker != null)
+      {
+         serverInvoker.stop();
+      }
    }
 
    /**




More information about the jboss-cvs-commits mailing list