This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch activemq-5.15.x
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/activemq-5.15.x by this push:
new 107f819 Give more time on quorum test in ElectingLevelDBStoreTest
107f819 is described below
commit 107f8190d0590eb80022c2ae7fdbd7f7c54944fb
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) {
|