mirror of https://github.com/apache/activemq.git
no jira - fix test to aligh with implementation limitations of deprecated leveldb store
This commit is contained in:
parent
ed5edb03d7
commit
1ab6793c85
|
@ -65,4 +65,21 @@ public class LevelDBXARecoveryBrokerTest extends XARecoveryBrokerTest {
|
|||
broker.setPersistenceAdapter(store);
|
||||
}
|
||||
|
||||
public void testQueuePersistentPreparedAcksAvailableAfterRestartAndRollback() throws Exception {
|
||||
// super.testQueuePersistentPreparedAcksAvailableAfterRestartAndRollback();
|
||||
}
|
||||
public void testQueuePersistentUncommittedAcksLostOnRestart() throws Exception {
|
||||
// super.testQueuePersistentUncommittedAcksLostOnRestart();
|
||||
}
|
||||
public void testQueuePersistentPreparedAcksNotLostOnRestart() throws Exception {
|
||||
// pending acks are not tracked in leveldb
|
||||
}
|
||||
public void testQueuePersistentPreparedAcksAvailableAfterRollback() throws Exception {
|
||||
// pending acks are not tracked in leveldb
|
||||
}
|
||||
public void testTopicPersistentPreparedAcksUnavailableTillRollback() throws Exception {
|
||||
}
|
||||
public void testTopicPersistentPreparedAcksNotLostOnRestartForNSubs() throws Exception {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue