You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2012/09/18 21:11:14 UTC

svn commit: r1387324 - /activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Topic.scala

Author: chirino
Date: Tue Sep 18 19:11:14 2012
New Revision: 1387324

URL: http://svn.apache.org/viewvc?rev=1387324&view=rev
Log:
regression was causing topic producers to not get disconnect from consumers.

Modified:
    activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Topic.scala

Modified: activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Topic.scala
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Topic.scala?rev=1387324&r1=1387323&r2=1387324&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Topic.scala (original)
+++ activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Topic.scala Tue Sep 18 19:11:14 2012
@@ -509,7 +509,7 @@ class Topic(val router:LocalRouter, val 
         consumers.remove(consumer) match {
           case Some(consumer)=>
             add_dequeue_counters(topic_metrics, consumer.link)
-            List(consumer)
+            List(consumer.consumer)
           case None =>
             List()
         }