[hornetq-commits] JBoss hornetq SVN: r8460 - trunk/src/main/org/hornetq/integration/transports/netty.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Nov 30 04:38:20 EST 2009


Author: timfox
Date: 2009-11-30 04:38:20 -0500 (Mon, 30 Nov 2009)
New Revision: 8460

Modified:
   trunk/src/main/org/hornetq/integration/transports/netty/ChannelPipelineSupport.java
Log:
Reverted to the old frame decoder, since there seems to be a problem with the new one as evidenced by SendStressTest

Modified: trunk/src/main/org/hornetq/integration/transports/netty/ChannelPipelineSupport.java
===================================================================
--- trunk/src/main/org/hornetq/integration/transports/netty/ChannelPipelineSupport.java	2009-11-30 09:23:10 UTC (rev 8459)
+++ trunk/src/main/org/hornetq/integration/transports/netty/ChannelPipelineSupport.java	2009-11-30 09:38:20 UTC (rev 8460)
@@ -47,7 +47,7 @@
    public static void addCodecFilter(final ChannelPipeline pipeline, final BufferHandler handler)
    {
       assert pipeline != null;
-      pipeline.addLast("decoder", new HornetQFrameDecoder2());
+      pipeline.addLast("decoder", new HornetQFrameDecoder(handler));
    }
 
    public static void addSSLFilter(final ChannelPipeline pipeline, final SSLContext context, final boolean client) throws Exception



More information about the hornetq-commits mailing list