Author: rajdavies
Date: Wed Sep 5 02:06:32 2007
New Revision: 572905
URL: http://svn.apache.org/viewvc?rev=572905&view=rev
Log:
shorten the name of the container containing the SubscriberMessageList
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/store/kahadaptor/KahaTopicReferenceStore.java
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/store/kahadaptor/KahaTopicReferenceStore.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/store/kahadaptor/KahaTopicReferenceStore.java?rev=572905&r1=572904&r2=572905&view=diff
==============================================================================
---
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/store/kahadaptor/KahaTopicReferenceStore.java
(original)
+++
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/store/kahadaptor/KahaTopicReferenceStore.java
Wed Sep 5 02:06:32 2007
@@ -109,7 +109,7 @@
}
protected ListContainer addSubscriberMessageContainer(String key) throws
IOException {
- ListContainer container = store.getListContainer(destination,
"topic-subs-references-" + key);
+ ListContainer container = store.getListContainer(destination, "TSR-" +
key);
Marshaller marshaller = new ConsumerMessageRefMarshaller();
container.setMarshaller(marshaller);
TopicSubContainer tsc = new TopicSubContainer(container);