Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 499059BD3 for ; Thu, 27 Oct 2011 13:03:26 +0000 (UTC) Received: (qmail 95760 invoked by uid 500); 27 Oct 2011 13:03:26 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 95695 invoked by uid 500); 27 Oct 2011 13:03:26 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 95688 invoked by uid 99); 27 Oct 2011 13:03:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Oct 2011 13:03:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Oct 2011 13:03:23 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D49B62388900 for ; Thu, 27 Oct 2011 13:03:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1189734 - /activemq/trunk/activemq-core/src/test/java/org/apache/activemq/bugs/DurableConsumerTest.java Date: Thu, 27 Oct 2011 13:03:02 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111027130302.D49B62388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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;