diff options
author | Rajith Muditha Attapattu <rajith@apache.org> | 2011-05-11 12:44:20 +0000 |
---|---|---|
committer | Rajith Muditha Attapattu <rajith@apache.org> | 2011-05-11 12:44:20 +0000 |
commit | e4b65489aebec2cbbe85a77d26e95664775db628 (patch) | |
tree | 94d8704b5f5665648b49aff7f097d6ba9f883767 /java/client/src | |
parent | 1be745d9a7e48adae37a10cd3712a89782fb5c31 (diff) | |
download | qpid-python-e4b65489aebec2cbbe85a77d26e95664775db628.tar.gz |
QPID-3207
Rolling back the change until we fix the deadlock issue identified in QPID-3216
Also investigate the other test failure to see if there are any other issues besides the deadlock problem.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1101861 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src')
-rw-r--r-- | java/client/src/main/java/org/apache/qpid/client/AMQSession.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/AMQSession.java b/java/client/src/main/java/org/apache/qpid/client/AMQSession.java index 8ac73d730f..d1e7aae94a 100644 --- a/java/client/src/main/java/org/apache/qpid/client/AMQSession.java +++ b/java/client/src/main/java/org/apache/qpid/client/AMQSession.java @@ -2467,7 +2467,7 @@ public abstract class AMQSession<C extends BasicMessageConsumer, P extends Basic } else { - con.close(true); + con.close(false); } } // at this point the _consumers map will be empty |