summaryrefslogtreecommitdiff
path: root/python/qpid
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-10-31 03:41:29 +0000
committerTed Ross <tross@apache.org>2008-10-31 03:41:29 +0000
commitea0d105aac7f505f67878c56e3230c3b35dfd8ae (patch)
treeaa6799b769b70d519688a7917b47b5bde883988a /python/qpid
parent8592da92e3200c166b904c89175c2c39333722b0 (diff)
downloadqpid-python-ea0d105aac7f505f67878c56e3230c3b35dfd8ae.tar.gz
Fixed a problem with improper shutdown that occasionally caused unhandled exceptions
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@709337 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid')
-rw-r--r--python/qpid/qmfconsole.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/qpid/qmfconsole.py b/python/qpid/qmfconsole.py
index 55f2370a28..f5c9af18cc 100644
--- a/python/qpid/qmfconsole.py
+++ b/python/qpid/qmfconsole.py
@@ -1227,6 +1227,7 @@ class Broker:
if self.session.console != None:
self.amqpSession.incoming("tdest").stop()
self.amqpSession.close()
+ self.conn.close()
self.isConnected = False
else:
raise Exception("Broker already disconnected")