You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2008/11/12 09:40:52 UTC

svn commit: r713316 - in /activemq/camel/branches/camel-1.x: ./ camel-core/src/test/java/org/apache/camel/component/dataset/DataSetSedaTest.java components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfRouterTestSupport.java

Author: ningjiang
Date: Wed Nov 12 00:40:49 2008
New Revision: 713316

URL: http://svn.apache.org/viewvc?rev=713316&view=rev
Log:
Merged revisions 713314 via svnmerge from 
https://svn.apache.org/repos/asf/activemq/camel/trunk

........
  r713314 | ningjiang | 2008-11-12 16:24:21 +0800 (Wed, 12 Nov 2008) | 1 line
  
  CAMEL-1080 try to fix the DataSerSedaTest failure in a slower box
........

Modified:
    activemq/camel/branches/camel-1.x/   (props changed)
    activemq/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/component/dataset/DataSetSedaTest.java
    activemq/camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfRouterTestSupport.java   (props changed)

Propchange: activemq/camel/branches/camel-1.x/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Nov 12 00:40:49 2008
@@ -1 +1 @@
-/activemq/camel/trunk:709850,711200,711206,711219-711220,711523,711531,711756,711784,711859,711874,711962,711971,712064,712119,712148,712662,712692,712925,713013,713107,713273,713290,713292
+/activemq/camel/trunk:709850,711200,711206,711219-711220,711523,711531,711756,711784,711859,711874,711962,711971,712064,712119,712148,712662,712692,712925,713013,713107,713273,713290,713292,713314

Propchange: activemq/camel/branches/camel-1.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: activemq/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/component/dataset/DataSetSedaTest.java
URL: http://svn.apache.org/viewvc/activemq/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/component/dataset/DataSetSedaTest.java?rev=713316&r1=713315&r2=713316&view=diff
==============================================================================
--- activemq/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/component/dataset/DataSetSedaTest.java (original)
+++ activemq/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/component/dataset/DataSetSedaTest.java Wed Nov 12 00:40:49 2008
@@ -26,7 +26,7 @@
  * Unit test to demonstrate high concurrency with seda. Offspring by CAMEL-605.
  */
 public class DataSetSedaTest extends ContextTestSupport {
-    private SimpleDataSet dataSet = new SimpleDataSet(500);
+    private SimpleDataSet dataSet = new SimpleDataSet(200);
 
     public void test() throws Exception {
         MockEndpoint endpoint = getMockEndpoint("dataset:foo");
@@ -46,8 +46,8 @@
     protected RouteBuilder createRouteBuilder() throws Exception {
         return new RouteBuilder() {
             public void configure() throws Exception {
-                from("dataset:foo").to("seda:queue:test");
-                from("seda:queue:test").to("dataset:foo");
+                from("dataset:foo").to("seda:queue:test?size=100");
+                from("seda:queue:test?size=100").to("dataset:foo");
             }
         };
     }

Propchange: activemq/camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfRouterTestSupport.java
            ('svn:mergeinfo' removed)