summaryrefslogtreecommitdiff
path: root/java/systests
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-06-07 13:42:01 +0000
committerRafael H. Schloming <rhs@apache.org>2008-06-07 13:42:01 +0000
commitb77030fd7d3ad635d725b9c0a82f34253fb04592 (patch)
treea3c0c844a6a2319c371daf1e236ec14d1d3f1ff3 /java/systests
parent26777a6a0f2ee1e813356f15c6ffe951facb72f7 (diff)
downloadqpid-python-b77030fd7d3ad635d725b9c0a82f34253fb04592.tar.gz
QPID-1126: reuse channel numbers for sessions that have closed, and honor the negotiated channel-max; also removed unnecessary catches that were swallowing stack traces from several tests
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@664339 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/server/security/acl/SimpleACLTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/server/security/acl/SimpleACLTest.java b/java/systests/src/main/java/org/apache/qpid/server/security/acl/SimpleACLTest.java
index 9ba0f6024c..e39b1122cf 100644
--- a/java/systests/src/main/java/org/apache/qpid/server/security/acl/SimpleACLTest.java
+++ b/java/systests/src/main/java/org/apache/qpid/server/security/acl/SimpleACLTest.java
@@ -575,6 +575,7 @@ public class SimpleACLTest extends TestCase implements ConnectionListener
catch (JMSException e)
{
Throwable cause = e.getLinkedException();
+ cause.printStackTrace();
assertEquals("Incorrect exception", AMQAuthenticationException.class, cause.getClass());
assertEquals("Incorrect error code thrown", 403, ((AMQAuthenticationException) cause).getErrorCode().getCode());
}