validate if concurrentstore and dispatch topics causes an issue for message order with durable subs, actually turn if off! : https://issues.apache.org/activemq/browse/AMQ-2864

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@983971 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2010-08-10 12:47:59 +00:00
parent 4625a468a0
commit 604ec7cc9f
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ public class AMQ2149KahaDBTest extends AMQ2149Test {
protected void configurePersistenceAdapter(BrokerService brokerService) throws Exception {
// nothing to do as kahaDB is now the default
KahaDBPersistenceAdapter kahaDB = (KahaDBPersistenceAdapter) brokerService.getPersistenceAdapter();
kahaDB.setConcurrentStoreAndDispatchTopics(true);
kahaDB.setConcurrentStoreAndDispatchTopics(false);
}
}