[hornetq-commits] JBoss hornetq SVN: r7921 - in trunk: src/main/org/hornetq/integration/transports/netty and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Aug 27 06:45:10 EDT 2009


Author: timfox
Date: 2009-08-27 06:45:09 -0400 (Thu, 27 Aug 2009)
New Revision: 7921

Modified:
   trunk/build-hornetq.xml
   trunk/src/main/org/hornetq/integration/transports/netty/HornetQChannelHandler.java
Log:
https://jira.jboss.org/jira/browse/HORNETQ-114

Modified: trunk/build-hornetq.xml
===================================================================
--- trunk/build-hornetq.xml	2009-08-27 09:22:16 UTC (rev 7920)
+++ trunk/build-hornetq.xml	2009-08-27 10:45:09 UTC (rev 7921)
@@ -665,18 +665,19 @@
             <include name="org/hornetq/core/logging/**/*.class"/>
             <include name="org/hornetq/core/remoting/**/*.class"/>
             <include name="org/hornetq/utils/**/*.class"/>
-             <include name="org/hornetq/core/cluster/**/*.class"/>
+            <include name="org/hornetq/core/cluster/**/*.class"/>
             <include name="org/hornetq/core/config/**/*.class"/>
             <include name="org/hornetq/core/list/**/*.class"/>
             <include name="org/hornetq/core/message/**/*.class"/>
             <include name="org/hornetq/core/version/**/*.class"/>
-            <include name="org/hornetq/core/management/**/*.class"/>
+            <include name="org/hornetq/core/management/**/*.class"/>           
+            <include name="org/hornetq/core/transaction/impl/XidImpl.class"/>
+            
             <!-- FIXME - why are these classes in the client jar ??? -->
             <include name="org/hornetq/core/server/HornetQComponent.class"/>
             <include name="org/hornetq/core/server/JournalType.class"/>
             <include name="org/hornetq/core/journal/EncodingSupport.class"/>
-            <include name="org/hornetq/core/server/ServerMessage.class"/>
-            <include name="org/hornetq/core/ping/**/*.class"/>
+            <include name="org/hornetq/core/server/ServerMessage.class"/>            
          </fileset>
       </jar>
 

Modified: trunk/src/main/org/hornetq/integration/transports/netty/HornetQChannelHandler.java
===================================================================
--- trunk/src/main/org/hornetq/integration/transports/netty/HornetQChannelHandler.java	2009-08-27 09:22:16 UTC (rev 7920)
+++ trunk/src/main/org/hornetq/integration/transports/netty/HornetQChannelHandler.java	2009-08-27 10:45:09 UTC (rev 7921)
@@ -94,6 +94,8 @@
             return;
          }
          
+         log.error("Got exception on Netty channel", e.getCause());
+                  
          HornetQException me = new HornetQException(HornetQException.INTERNAL_ERROR, "Netty exception");
          me.initCause(e.getCause());
          try



More information about the hornetq-commits mailing list