From commits-return-62281-archive-asf-public=cust-asf.ponee.io@activemq.apache.org Wed Dec 2 08:15:55 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 4FAC8180643 for ; Wed, 2 Dec 2020 09:15:55 +0100 (CET) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id BB3AD66C87 for ; Wed, 2 Dec 2020 08:15:54 +0000 (UTC) Received: (qmail 51490 invoked by uid 500); 2 Dec 2020 08:15:54 -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 51481 invoked by uid 99); 2 Dec 2020 08:15:53 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Dec 2020 08:15:53 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id BD1C581FE6; Wed, 2 Dec 2020 08:15:53 +0000 (UTC) Date: Wed, 02 Dec 2020 08:15:53 +0000 To: "commits@activemq.apache.org" Subject: [activemq] branch activemq-5.16.x updated: Give more time on quorum test in ElectingLevelDBStoreTest MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <160689695367.9810.1947695732040111056@gitbox.apache.org> From: jbonofre@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: activemq X-Git-Refname: refs/heads/activemq-5.16.x X-Git-Reftype: branch X-Git-Oldrev: 727c9b8e1ba549aa3cf333c940fa94a47899e890 X-Git-Newrev: 915376128ea98bbaf98b59bb4eb12cdfec10962f X-Git-Rev: 915376128ea98bbaf98b59bb4eb12cdfec10962f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jbonofre pushed a commit to branch activemq-5.16.x in repository https://gitbox.apache.org/repos/asf/activemq.git The following commit(s) were added to refs/heads/activemq-5.16.x by this push: new 9153761 Give more time on quorum test in ElectingLevelDBStoreTest 9153761 is described below commit 915376128ea98bbaf98b59bb4eb12cdfec10962f Author: jbonofre AuthorDate: Wed Dec 2 09:14:52 2020 +0100 Give more time on quorum test in ElectingLevelDBStoreTest --- .../java/org/apache/activemq/leveldb/test/ElectingLevelDBStoreTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activemq-leveldb-store/src/test/java/org/apache/activemq/leveldb/test/ElectingLevelDBStoreTest.java b/activemq-leveldb-store/src/test/java/org/apache/activemq/leveldb/test/ElectingLevelDBStoreTest.java index 4d852de..95376d6 100644 --- a/activemq-leveldb-store/src/test/java/org/apache/activemq/leveldb/test/ElectingLevelDBStoreTest.java +++ b/activemq-leveldb-store/src/test/java/org/apache/activemq/leveldb/test/ElectingLevelDBStoreTest.java @@ -222,7 +222,7 @@ public class ElectingLevelDBStoreTest extends ZooKeeperTestSupport { } LOG.info("Imposing 11s I/O wait on Zookeeper connections, waiting 30s for quorum to be lost"); - this.connector.testHandle.setIOWaitMillis(11 * 1000, 30 * 1000); + this.connector.testHandle.setIOWaitMillis(11 * 1000, 60 * 1000); LOG.info("Confirming that the quorum has been lost"); for (ElectingLevelDBStore store: stores) {