diff options
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/broker/src/main/java/org/apache/qpid/server/transport/ServerSessionDelegate.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/transport/ServerSessionDelegate.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/transport/ServerSessionDelegate.java index d83bd1c4dc..7a6c0c42be 100644 --- a/qpid/java/broker/src/main/java/org/apache/qpid/server/transport/ServerSessionDelegate.java +++ b/qpid/java/broker/src/main/java/org/apache/qpid/server/transport/ServerSessionDelegate.java @@ -192,7 +192,7 @@ public class ServerSessionDelegate extends SessionDelegate if(((ServerSession)session).getSubscription(destination)!=null) { - exception(session, method, ExecutionErrorCode.NOT_ALLOWED, "Subscription already exists with destaination: '"+destination+"'"); + exception(session, method, ExecutionErrorCode.NOT_ALLOWED, "Subscription already exists with destination '"+destination+"'"); } else { @@ -275,7 +275,7 @@ public class ServerSessionDelegate extends SessionDelegate } catch (AMQException e) { - exception(session, method, e, "Cannot subscribe to '" + destination); + exception(session, method, e, "Cannot subscribe to queue '" + queueName + "' with destination '" + destination); } } } |
