mirror of https://github.com/apache/activemq.git
ignore intermittent failures for 5.11 - leveldb can be a focus for 5.12 - https://issues.apache.org/jira/browse/AMQ-5512
This commit is contained in:
parent
383c27e245
commit
05f6cd6cfc
|
@ -24,6 +24,7 @@ import org.apache.activemq.leveldb.replicated.ElectingLevelDBStore;
|
||||||
import org.apache.activemq.store.MessageStore;
|
import org.apache.activemq.store.MessageStore;
|
||||||
import org.apache.commons.io.FileUtils;
|
import org.apache.commons.io.FileUtils;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
@ -43,6 +44,7 @@ public class ElectingLevelDBStoreTest extends ZooKeeperTestSupport {
|
||||||
ArrayList<ElectingLevelDBStore> stores = new ArrayList<ElectingLevelDBStore>();
|
ArrayList<ElectingLevelDBStore> stores = new ArrayList<ElectingLevelDBStore>();
|
||||||
ElectingLevelDBStore master = null;
|
ElectingLevelDBStore master = null;
|
||||||
|
|
||||||
|
@Ignore("https://issues.apache.org/jira/browse/AMQ-5512")
|
||||||
@Test(timeout = 1000*60*10)
|
@Test(timeout = 1000*60*10)
|
||||||
public void testElection() throws Exception {
|
public void testElection() throws Exception {
|
||||||
deleteDirectory("leveldb-node1");
|
deleteDirectory("leveldb-node1");
|
||||||
|
|
|
@ -62,6 +62,7 @@ public class ReplicatedLevelDBBrokerTest extends ZooKeeperTestSupport {
|
||||||
* Tries to replicate the problem reported at:
|
* Tries to replicate the problem reported at:
|
||||||
* https://issues.apache.org/jira/browse/AMQ-4837
|
* https://issues.apache.org/jira/browse/AMQ-4837
|
||||||
*/
|
*/
|
||||||
|
@Ignore("https://issues.apache.org/jira/browse/AMQ-5512")
|
||||||
@Test(timeout = 1000*60*10)
|
@Test(timeout = 1000*60*10)
|
||||||
public void testAMQ4837viaJMS() throws Throwable {
|
public void testAMQ4837viaJMS() throws Throwable {
|
||||||
testAMQ4837(false);
|
testAMQ4837(false);
|
||||||
|
@ -71,6 +72,7 @@ public class ReplicatedLevelDBBrokerTest extends ZooKeeperTestSupport {
|
||||||
* Tries to replicate the problem reported at:
|
* Tries to replicate the problem reported at:
|
||||||
* https://issues.apache.org/jira/browse/AMQ-4837
|
* https://issues.apache.org/jira/browse/AMQ-4837
|
||||||
*/
|
*/
|
||||||
|
@Ignore("https://issues.apache.org/jira/browse/AMQ-5512")
|
||||||
@Test(timeout = 1000*60*10)
|
@Test(timeout = 1000*60*10)
|
||||||
public void testAMQ4837viaJMX() throws Throwable {
|
public void testAMQ4837viaJMX() throws Throwable {
|
||||||
for (int i = 0; i < 2; i++) {
|
for (int i = 0; i < 2; i++) {
|
||||||
|
|
Loading…
Reference in New Issue