summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2007-10-03 15:23:32 +0000
committerMartin Ritchie <ritchiem@apache.org>2007-10-03 15:23:32 +0000
commite8a4c31a2d9547c6a6d83042d64f7878a9b04c31 (patch)
tree19708109e91cb9d01890840bb21cf383fd02daac
parenta1c1c76080506403db3f299a2b6305274be8618b (diff)
downloadqpid-python-e8a4c31a2d9547c6a6d83042d64f7878a9b04c31.tar.gz
Merged revisions 581621 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1 ........ r581621 | ritchiem | 2007-10-03 16:15:52 +0100 (Wed, 03 Oct 2007) | 1 line QPID-584 : Fixed issue where ALL errors are presented to client as a connection closing error. ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@581624 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java b/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java
index 45c9dc046e..e7ff5afceb 100644
--- a/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java
+++ b/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java
@@ -347,9 +347,9 @@ public class AMQProtocolHandler extends IoHandlerAdapter
AMQException amqe = new AMQException("Protocol handler error: " + cause, cause);
propagateExceptionToWaiters(amqe);
+ _connection.exceptionReceived(cause);
}
- _connection.exceptionReceived(cause);
}
// FIXME Need to correctly handle other exceptions. Things like ...