[jboss-cvs] JBossAS SVN: r89543 - trunk/server/src/etc/deploy.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri May 29 19:22:13 EDT 2009


Author: david.lloyd at jboss.com
Date: 2009-05-29 19:22:13 -0400 (Fri, 29 May 2009)
New Revision: 89543

Modified:
   trunk/server/src/etc/deploy/thread-pool-jboss-beans.xml
Log:
Use non-core threads so we do not end up with large quantities of useless threads laying around

Modified: trunk/server/src/etc/deploy/thread-pool-jboss-beans.xml
===================================================================
--- trunk/server/src/etc/deploy/thread-pool-jboss-beans.xml	2009-05-29 22:35:40 UTC (rev 89542)
+++ trunk/server/src/etc/deploy/thread-pool-jboss-beans.xml	2009-05-29 23:22:13 UTC (rev 89543)
@@ -46,7 +46,8 @@
         <!-- commented out for now due to a couple Threads bugs, to be resolved in 1.0.1.GA -->
         <!--<thread-pool-executor name="LongRunningTasksThreadPool" thread-factory="SystemThreadFactory" queue-length="0" allow-core-timeout="true">-->
         <thread-pool-executor name="LongRunningTasksThreadPool" thread-factory="SystemThreadFactory" queue-length="1">
-           <core-pool-size count="100000"/>
+           <core-pool-size count="1"/>
+           <max-pool-size count="100000"/>
            <keepalive-time time="60" unit="seconds"/>
            <reject-policy name="abort"/>
         </thread-pool-executor>




More information about the jboss-cvs-commits mailing list