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 DA19918641 for ; Mon, 25 Jan 2016 16:19:26 +0000 (UTC) Received: (qmail 29344 invoked by uid 500); 25 Jan 2016 16:19:26 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 29286 invoked by uid 500); 25 Jan 2016 16:19: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 29273 invoked by uid 99); 25 Jan 2016 16:19:26 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jan 2016 16:19:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2C3D6DFF96; Mon, 25 Jan 2016 16:19:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: clebertsuconic@apache.org To: commits@activemq.apache.org Date: Mon, 25 Jan 2016 16:19:26 -0000 Message-Id: <54ee6a8e1b5249ada49a323d7e8d1ef2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] activemq-artemis git commit: ARTEMIS-360 - PagingTest.testSpreadMessagesWithFilterWithDeadConsumer fails on timeout waiting for stop paging Repository: activemq-artemis Updated Branches: refs/heads/master 156214049 -> 69dacb285 ARTEMIS-360 - PagingTest.testSpreadMessagesWithFilterWithDeadConsumer fails on timeout waiting for stop paging extended waiting time Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/812affff Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/812affff Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/812affff Branch: refs/heads/master Commit: 812affffbe0626a79f2611a5161cc8cb0e87bfd7 Parents: 1562140 Author: Martin Styk Authored: Mon Jan 25 14:37:43 2016 +0100 Committer: Martin Styk Committed: Mon Jan 25 14:37:43 2016 +0100 ---------------------------------------------------------------------- .../org/apache/activemq/artemis/tests/util/ActiveMQTestBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/812affff/artemis-server/src/test/java/org/apache/activemq/artemis/tests/util/ActiveMQTestBase.java ---------------------------------------------------------------------- diff --git a/artemis-server/src/test/java/org/apache/activemq/artemis/tests/util/ActiveMQTestBase.java b/artemis-server/src/test/java/org/apache/activemq/artemis/tests/util/ActiveMQTestBase.java index 5e610d5..06f9891 100644 --- a/artemis-server/src/test/java/org/apache/activemq/artemis/tests/util/ActiveMQTestBase.java +++ b/artemis-server/src/test/java/org/apache/activemq/artemis/tests/util/ActiveMQTestBase.java @@ -1069,7 +1069,7 @@ public abstract class ActiveMQTestBase extends Assert { } protected void waitForNotPaging(PagingStore store) throws InterruptedException { - long timeout = System.currentTimeMillis() + 10000; + long timeout = System.currentTimeMillis() + 20000; while (timeout > System.currentTimeMillis() && store.isPaging()) { Thread.sleep(100); }