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 <jbonofre@apache.org>
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) {
|