Author: crossley
Date: Fri Aug 22 00:00:46 2008
New Revision: 687976

URL: http://svn.apache.org/viewvc?rev=687976&view=rev
Log:
Add the "default" thread-pool configuration from Cocoon-2.1 xconf. We only had 
a "daemon" thread-pool (its parameter values do exactly compare with Cocoon-2.1 
xconf).

Modified:
    
forrest/branches/update_cocoon_2.1.12-dev/main/webapp/WEB-INF/xconf/forrest-core.xconf

Modified: 
forrest/branches/update_cocoon_2.1.12-dev/main/webapp/WEB-INF/xconf/forrest-core.xconf
URL: 
http://svn.apache.org/viewvc/forrest/branches/update_cocoon_2.1.12-dev/main/webapp/WEB-INF/xconf/forrest-core.xconf?rev=687976&r1=687975&r2=687976&view=diff
==============================================================================
--- 
forrest/branches/update_cocoon_2.1.12-dev/main/webapp/WEB-INF/xconf/forrest-core.xconf
 (original)
+++ 
forrest/branches/update_cocoon_2.1.12-dev/main/webapp/WEB-INF/xconf/forrest-core.xconf
 Fri Aug 22 00:00:46 2008
@@ -744,6 +744,22 @@
     
<thread-factory>org.apache.cocoon.components.thread.DefaultThreadFactory</thread-factory>
     <thread-pools>
       <!--+
+          | This is the default thread pool. It's use fits best for short
+          | running background tasks.
+          +-->
+      <thread-pool>
+        <name>default</name>
+        <priority>NORM</priority>
+        <daemon>false</daemon>
+        <queue-size>-1</queue-size>
+        <max-pool-size>5</max-pool-size>
+        <min-pool-size>5</min-pool-size>
+        <keep-alive-time-ms>60000</keep-alive-time-ms>
+        <block-policy>ABORT</block-policy>
+        <shutdown-graceful>false</shutdown-graceful>
+        <shutdown-wait-time-ms>-1</shutdown-wait-time-ms>
+      </thread-pool>
+      <!--+
           | This thread pool should be used for daemons (permanently running
           | threads).
           +-->