From commits-return-46123-archive-asf-public=cust-asf.ponee.io@qpid.apache.org Thu Jul 5 16:18:25 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id A41FA180657 for ; Thu, 5 Jul 2018 16:18:24 +0200 (CEST) Received: (qmail 56377 invoked by uid 500); 5 Jul 2018 14:18:23 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 56368 invoked by uid 99); 5 Jul 2018 14:18:23 -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; Thu, 05 Jul 2018 14:18:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A3CDCDFBC7; Thu, 5 Jul 2018 14:18:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: robbie@apache.org To: commits@qpid.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: qpid-jms git commit: NO-JIRA: increase timeout to avoid spurious failure in slower CI envs Date: Thu, 5 Jul 2018 14:18:23 +0000 (UTC) Repository: qpid-jms Updated Branches: refs/heads/master 7750a1c27 -> 1baf3e2cb NO-JIRA: increase timeout to avoid spurious failure in slower CI envs Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/1baf3e2c Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/1baf3e2c Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/1baf3e2c Branch: refs/heads/master Commit: 1baf3e2cbffbd6afeab14397b4940c144434f626 Parents: 7750a1c Author: Robbie Gemmell Authored: Thu Jul 5 15:17:40 2018 +0100 Committer: Robbie Gemmell Committed: Thu Jul 5 15:17:40 2018 +0100 ---------------------------------------------------------------------- ...ailoverWithAmqpOpenProvidedServerListIntegrationTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/1baf3e2c/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverWithAmqpOpenProvidedServerListIntegrationTest.java ---------------------------------------------------------------------- diff --git a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverWithAmqpOpenProvidedServerListIntegrationTest.java b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverWithAmqpOpenProvidedServerListIntegrationTest.java index 347e5a1..6006ca1 100644 --- a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverWithAmqpOpenProvidedServerListIntegrationTest.java +++ b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverWithAmqpOpenProvidedServerListIntegrationTest.java @@ -489,7 +489,7 @@ public class FailoverWithAmqpOpenProvidedServerListIntegrationTest extends QpidJ connection.createSession(); - primaryPeer.waitForAllHandlersToComplete(100); + primaryPeer.waitForAllHandlersToComplete(1000); primaryPeer.close(); assertTrue("Should connect to backup peer", connectedToBackup.await(5, TimeUnit.SECONDS)); @@ -607,7 +607,7 @@ public class FailoverWithAmqpOpenProvidedServerListIntegrationTest extends QpidJ connection.createSession(); - primaryPeer.waitForAllHandlersToComplete(100); + primaryPeer.waitForAllHandlersToComplete(1000); primaryPeer.close(); assertTrue("Should connect to backup peer", connectedToBackup.await(5, TimeUnit.SECONDS)); @@ -726,7 +726,7 @@ public class FailoverWithAmqpOpenProvidedServerListIntegrationTest extends QpidJ connection.createSession(); - primaryPeer.waitForAllHandlersToComplete(100); + primaryPeer.waitForAllHandlersToComplete(1000); primaryPeer.close(); assertTrue("Should connect to backup peer", connectedToBackup.await(5, TimeUnit.SECONDS)); @@ -850,7 +850,7 @@ public class FailoverWithAmqpOpenProvidedServerListIntegrationTest extends QpidJ connection.createSession(); - primaryPeer.waitForAllHandlersToComplete(100); + primaryPeer.waitForAllHandlersToComplete(1000); primaryPeer.close(); assertTrue("Should connect to backup peer", connectedToBackup.await(5, TimeUnit.SECONDS)); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org