[jboss-cvs] JBoss Messaging SVN: r4816 - trunk/src/main/org/jboss/messaging/core/remoting/impl/netty.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 18 05:05:27 EDT 2008


Author: trustin
Date: 2008-08-18 05:05:27 -0400 (Mon, 18 Aug 2008)
New Revision: 4816

Modified:
   trunk/src/main/org/jboss/messaging/core/remoting/impl/netty/NettyConnector.java
Log:
MinaConnection -> Netty connection

Modified: trunk/src/main/org/jboss/messaging/core/remoting/impl/netty/NettyConnector.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/remoting/impl/netty/NettyConnector.java	2008-08-18 09:00:54 UTC (rev 4815)
+++ trunk/src/main/org/jboss/messaging/core/remoting/impl/netty/NettyConnector.java	2008-08-18 09:05:27 UTC (rev 4816)
@@ -151,7 +151,8 @@
                }
                catch (Exception e)
                {
-                  IllegalStateException ise = new IllegalStateException("Unable to create MinaConnection for " + location);
+                  IllegalStateException ise = new IllegalStateException(
+                        "Unable to create Netty connection for " + location);
                   ise.initCause(e);
                   throw ise;
                }
@@ -217,6 +218,7 @@
       {
          SslHandler sslHandler = ctx.getPipeline().get(SslHandler.class);
          if (sslHandler != null) {
+            log.info("Starting SSL handshake.");
             sslHandler.handshake(e.getChannel());
          }
       }




More information about the jboss-cvs-commits mailing list