You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2011/10/27 15:03:02 UTC

svn commit: r1189734 - /activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java

Author: gtully
Date: Thu Oct 27 13:03:02 2011
New Revision: 1189734

URL: http://svn.apache.org/viewvc?rev=1189734&view=rev
Log:
this test takes too long in hudson, reduce the amount of messages processed, quantity does not add much to the test

Modified:
    activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java?rev=1189734&r1=1189733&r2=1189734&view=diff
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java Thu Oct 27 13:03:02 2011
@@ -64,7 +64,7 @@ import org.slf4j.LoggerFactory;
  */
 public class DurableConsumerTest extends CombinationTestSupport{
     private static final Logger LOG = LoggerFactory.getLogger(DurableConsumerTest.class);
-    private static int COUNT = 1024 * 60;
+    private static int COUNT = 1024 * 10;
     private static String CONSUMER_NAME = "DURABLE_TEST";
     protected BrokerService broker;