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