You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by am...@apache.org on 2009/11/13 06:41:16 UTC

svn commit: r835749 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java

Author: amilas
Date: Fri Nov 13 05:41:16 2009
New Revision: 835749

URL: http://svn.apache.org/viewvc?rev=835749&view=rev
Log:
need to destroy the listner manager otherwise worker pool is not get terminated.

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java?rev=835749&r1=835748&r2=835749&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/context/ConfigurationContext.java Fri Nov 13 05:41:16 2009
@@ -775,7 +775,7 @@
      */
     public void terminate() throws AxisFault {
         if (listenerManager != null) {
-            listenerManager.stop();
+            listenerManager.destroy();
         }else{
             if(log.isDebugEnabled()){
                 log.debug("Start Invoke modules and services shutdown.");