use potentially shorter container name for the topic subscriber references

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@572974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-09-05 15:41:19 +00:00
parent ec2cfc5fd0
commit 0d0dd4587d
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, "TSR-" + key);
ListContainer container = store.getListContainer(key, "TSR-" + destination);
Marshaller marshaller = new ConsumerMessageRefMarshaller();
container.setMarshaller(marshaller);
TopicSubContainer tsc = new TopicSubContainer(container);