Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 52348 invoked from network); 31 Jan 2011 13:11:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 31 Jan 2011 13:11:52 -0000 Received: (qmail 93672 invoked by uid 500); 31 Jan 2011 13:11:51 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 93608 invoked by uid 500); 31 Jan 2011 13:11:49 -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 93601 invoked by uid 99); 31 Jan 2011 13:11:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jan 2011 13:11:48 +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; Mon, 31 Jan 2011 13:11:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 249C623889EB; Mon, 31 Jan 2011 13:11:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1065591 - /activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsMultipleBrokersTestSupport.java Date: Mon, 31 Jan 2011 13:11:28 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110131131128.249C623889EB@eris.apache.org> Author: gtully Date: Mon Jan 31 13:11:27 2011 New Revision: 1065591 URL: http://svn.apache.org/viewvc?rev=1065591&view=rev Log: it can take more than 30 seconds for network of 20 to get in line on a slower box, so incease the default delay Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsMultipleBrokersTestSupport.java Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsMultipleBrokersTestSupport.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsMultipleBrokersTestSupport.java?rev=1065591&r1=1065590&r2=1065591&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsMultipleBrokersTestSupport.java (original) +++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsMultipleBrokersTestSupport.java Mon Jan 31 13:11:27 2011 @@ -160,7 +160,7 @@ public class JmsMultipleBrokersTestSuppo Wait.waitFor(new Wait.Condition() { public boolean isSatisified() throws Exception { return (broker.getNetworkConnectors().get(0).activeBridges().size() >= min); - }}); + }}, Wait.MAX_WAIT_MILLIS * 2); } } }