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:
Gary Tully 2013-02-06 13:14:02 +00:00
parent 7da4da0476
commit 6a097b97fe
2 changed files with 11 additions and 0 deletions

View File

@ -27,4 +27,9 @@ public class LevelDBXARecoveryBrokerTest extends XARecoveryBrokerTest {
broker.setPersistenceAdapter(store);
}
@Override
public void testTopicPersistentPreparedAcksAvailableAfterRestartAndRollback() {
// https://issues.apache.org/jira/browse/AMQ-4296
}
}

View File

@ -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);