shorten the name of the container containing the SubscriberMessageList

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@572905 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-09-05 09:06:32 +00:00
parent c6301c37a8
commit ec2cfc5fd0
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class KahaTopicReferenceStore extends KahaReferenceStore implements Topic
}
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);