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 2013/04/08 16:54:04 UTC

svn commit: r1465657 - /activemq/activemq-apollo/trunk/apollo-amqp/src/main/scala/org/apache/activemq/apollo/amqp/AmqpProtocolHandler.scala

Author: chirino
Date: Mon Apr  8 14:54:03 2013
New Revision: 1465657

URL: http://svn.apache.org/r1465657
Log:
Fixes APLO-316: java.lang.RuntimeException: should not get called

Modified:
    activemq/activemq-apollo/trunk/apollo-amqp/src/main/scala/org/apache/activemq/apollo/amqp/AmqpProtocolHandler.scala

Modified: activemq/activemq-apollo/trunk/apollo-amqp/src/main/scala/org/apache/activemq/apollo/amqp/AmqpProtocolHandler.scala
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-amqp/src/main/scala/org/apache/activemq/apollo/amqp/AmqpProtocolHandler.scala?rev=1465657&r1=1465656&r2=1465657&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-amqp/src/main/scala/org/apache/activemq/apollo/amqp/AmqpProtocolHandler.scala (original)
+++ activemq/activemq-apollo/trunk/apollo-amqp/src/main/scala/org/apache/activemq/apollo/amqp/AmqpProtocolHandler.scala Mon Apr  8 14:54:03 2013
@@ -201,7 +201,7 @@ class AmqpProtocolHandler extends Protoc
     amqp_connection.pumpOut()
   }
 
-  override def on_transport_connected() = sys.error("should not get called")
+  override def on_transport_connected() = {} // should not get called
   override def on_transport_command(command: AnyRef): Unit = sys.error("should not get called")
 
   override def set_connection(connection: BrokerConnection) = {