You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2010/03/16 11:44:10 UTC

svn commit: r923677 - /camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/ThreadsExternalThreadPoolFactoryBeanTest.xml

Author: davsclaus
Date: Tue Mar 16 10:44:09 2010
New Revision: 923677

URL: http://svn.apache.org/viewvc?rev=923677&view=rev
Log:
CAMEL-1588: Introduced ThreadPoolProfile with a sensible default used by EIPs. Introduced ThreadPoolBuilder to easily create pools from Java.

Modified:
    camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/ThreadsExternalThreadPoolFactoryBeanTest.xml

Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/ThreadsExternalThreadPoolFactoryBeanTest.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/ThreadsExternalThreadPoolFactoryBeanTest.xml?rev=923677&r1=923676&r2=923677&view=diff
==============================================================================
--- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/ThreadsExternalThreadPoolFactoryBeanTest.xml (original)
+++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/ThreadsExternalThreadPoolFactoryBeanTest.xml Tue Mar 16 10:44:09 2010
@@ -27,10 +27,11 @@
     <threadPool id="myPool"
                 poolSize="2"
                 maxPoolSize="4"
+                maxQueueSize="2000"
                 threadName="myPool"
                 keepAliveTime="30"
                 units="SECONDS"
-                deamon="true"
+                daemon="true"
                 xmlns="http://camel.apache.org/schema/spring"/>
 
     <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">