[jboss-cvs] JBoss Messaging SVN: r3265 - in trunk/src/main/org/jboss/jms: wireformat and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Wed Oct 31 08:44:42 EDT 2007
Author: timfox
Date: 2007-10-31 08:44:42 -0400 (Wed, 31 Oct 2007)
New Revision: 3265
Modified:
trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java
trunk/src/main/org/jboss/jms/wireformat/JMSWireFormat.java
Log:
Minor tweak
Modified: trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java
===================================================================
--- trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java 2007-10-31 11:42:28 UTC (rev 3264)
+++ trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java 2007-10-31 12:44:42 UTC (rev 3265)
@@ -1458,7 +1458,7 @@
// connections meaning that later invocations can overtake earlier invocations, if there
// are more than one user concurrently invoking on the same transport. We need someway
// of pinning the client object to the underlying invocation. For now we just serialize
- // all access so that only the first connection in the pool is ever used - bit this is
+ // all access so that only the first connection in the pool is ever used - but this is
// far from ideal!!!
// See http://jira.jboss.com/jira/browse/JBMESSAGING-789
Modified: trunk/src/main/org/jboss/jms/wireformat/JMSWireFormat.java
===================================================================
--- trunk/src/main/org/jboss/jms/wireformat/JMSWireFormat.java 2007-10-31 11:42:28 UTC (rev 3264)
+++ trunk/src/main/org/jboss/jms/wireformat/JMSWireFormat.java 2007-10-31 12:44:42 UTC (rev 3265)
@@ -239,8 +239,7 @@
if (trace) { log.trace("Wrote packet"); }
}
catch (Exception e)
- {
- log.error("Failed to write packet", e);
+ {
IOException e2 = new IOException(e.getMessage());
e2.setStackTrace(e.getStackTrace());
throw e2;
More information about the jboss-cvs-commits
mailing list