[jboss-cvs] JBoss Messaging SVN: r1389 - trunk/src/main/org/jboss/jms/server

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 28 20:31:51 EDT 2006


Author: ovidiu.feodorov at jboss.com
Date: 2006-09-28 20:31:50 -0400 (Thu, 28 Sep 2006)
New Revision: 1389

Modified:
   trunk/src/main/org/jboss/jms/server/ServerPeer.java
Log:
correcting the shutdown sequence

Modified: trunk/src/main/org/jboss/jms/server/ServerPeer.java
===================================================================
--- trunk/src/main/org/jboss/jms/server/ServerPeer.java	2006-09-28 23:59:15 UTC (rev 1388)
+++ trunk/src/main/org/jboss/jms/server/ServerPeer.java	2006-09-29 00:31:50 UTC (rev 1389)
@@ -273,27 +273,27 @@
                   
          // Stop the wired components         
          
-         messageIdManager.start();
+         messageIdManager.stop();
          messageIdManager = null;
-         channelIdManager.start();
+         channelIdManager.stop();
          channelIdManager = null;
-         transactionIdManager.start();
+         transactionIdManager.stop();
          transactionIdManager = null;
-         destinationJNDIMapper.start();
+         destinationJNDIMapper.stop();
          destinationJNDIMapper = null;
-         connFactoryJNDIMapper.start();
+         connFactoryJNDIMapper.stop();
          connFactoryJNDIMapper = null;
-         connectionManager.start();
+         connectionManager.stop();
          connectionManager = null;
          connectorManager.start(); 
          connectorManager = null;
-         memoryManager.start();
+         memoryManager.stop();
          memoryManager = null;
-         messageStore.start();
+         messageStore.stop();
          messageStore = null;
-         securityStore.start();
+         securityStore.stop();
          securityStore = null;
-         txRepository.start();
+         txRepository.stop();
          txRepository = null;
    
          unloadServerAOPConfig();




More information about the jboss-cvs-commits mailing list