mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-4296 - disable leveldb durable bits pending more work for 5.9
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1442953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7da4da0476
commit
6a097b97fe
|
@ -27,4 +27,9 @@ public class LevelDBXARecoveryBrokerTest extends XARecoveryBrokerTest {
|
|||
broker.setPersistenceAdapter(store);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void testTopicPersistentPreparedAcksAvailableAfterRestartAndRollback() {
|
||||
// https://issues.apache.org/jira/browse/AMQ-4296
|
||||
}
|
||||
}
|
||||
|
|
|
@ -820,6 +820,12 @@ public class DurableSubscriptionOfflineTest extends org.apache.activemq.TestSupp
|
|||
}
|
||||
|
||||
public void testOfflineSubscriptionWithSelectorAfterRestart() throws Exception {
|
||||
|
||||
if (PersistenceAdapterChoice.LevelDB == defaultPersistenceAdapter) {
|
||||
// https://issues.apache.org/jira/browse/AMQ-4296
|
||||
return;
|
||||
}
|
||||
|
||||
// create offline subs 1
|
||||
Connection con = createConnection("offCli1");
|
||||
Session session = con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||
|
|
Loading…
Reference in New Issue