You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ke...@apache.org on 2010/05/28 05:21:49 UTC

svn commit: r949085 - /geronimo/server/branches/2.2/plugins/activemq/geronimo-activemq/src/main/java/org/apache/geronimo/activemq/BrokerServiceGBeanImpl.java

Author: kevan
Date: Fri May 28 03:21:49 2010
New Revision: 949085

URL: http://svn.apache.org/viewvc?rev=949085&view=rev
Log:
GERONIMO-5312 make start thread a daemon thread

Modified:
    geronimo/server/branches/2.2/plugins/activemq/geronimo-activemq/src/main/java/org/apache/geronimo/activemq/BrokerServiceGBeanImpl.java

Modified: geronimo/server/branches/2.2/plugins/activemq/geronimo-activemq/src/main/java/org/apache/geronimo/activemq/BrokerServiceGBeanImpl.java
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.2/plugins/activemq/geronimo-activemq/src/main/java/org/apache/geronimo/activemq/BrokerServiceGBeanImpl.java?rev=949085&r1=949084&r2=949085&view=diff
==============================================================================
--- geronimo/server/branches/2.2/plugins/activemq/geronimo-activemq/src/main/java/org/apache/geronimo/activemq/BrokerServiceGBeanImpl.java (original)
+++ geronimo/server/branches/2.2/plugins/activemq/geronimo-activemq/src/main/java/org/apache/geronimo/activemq/BrokerServiceGBeanImpl.java Fri May 28 03:21:49 2010
@@ -125,6 +125,7 @@ public class BrokerServiceGBeanImpl impl
                     asyncStart();
                 }
             }, "AsyncStartThread-" + getBrokerName());
+            asyncStartThread.setDaemon(true);
             asyncStartThread.start();
         }
     }