Author: rajdavies
Date: Wed Sep  5 08:41:19 2007
New Revision: 572974

URL: http://svn.apache.org/viewvc?rev=572974&view=rev
Log:
use potentially shorter container name for the topic subscriber references

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=572974&r1=572973&r2=572974&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 08:41:19 2007
@@ -109,7 +109,7 @@
     }
 
     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);


Reply via email to