diff options
author | Martin Ritchie <ritchiem@apache.org> | 2009-08-12 18:25:22 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2009-08-12 18:25:22 +0000 |
commit | b567927bda5350a2e85b2087fbc43b098df25431 (patch) | |
tree | 61e2afb4f1f4ae3d01390f300af478a1e06ea4f6 | |
parent | 79faafad69cb033712dfc0cf84cf0a8a2431eeda (diff) | |
download | qpid-python-b567927bda5350a2e85b2087fbc43b098df25431.tar.gz |
QPID-2002 : Fixed issue with multiple closes in Java profile
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@803654 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/management/jmx/ManagementActorLoggingTest.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/management/jmx/ManagementActorLoggingTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/management/jmx/ManagementActorLoggingTest.java index 74dd7e9964..7a2266902b 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/management/jmx/ManagementActorLoggingTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/management/jmx/ManagementActorLoggingTest.java @@ -175,6 +175,9 @@ public class ManagementActorLoggingTest extends AbstractTestLogging newProxyInstance(_mbsc, connectionName, ManagedConnection.class, false); + //Remove the connection close from any 0-10 connections + _monitor.reset(); + //Close the connection mangedConnection.closeConnection(); |