You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2008/10/31 04:41:30 UTC

svn commit: r709337 - /incubator/qpid/trunk/qpid/python/qpid/qmfconsole.py

Author: tross
Date: Thu Oct 30 20:41:29 2008
New Revision: 709337

URL: http://svn.apache.org/viewvc?rev=709337&view=rev
Log:
Fixed a problem with improper shutdown that occasionally caused unhandled exceptions

Modified:
    incubator/qpid/trunk/qpid/python/qpid/qmfconsole.py

Modified: incubator/qpid/trunk/qpid/python/qpid/qmfconsole.py
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/python/qpid/qmfconsole.py?rev=709337&r1=709336&r2=709337&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/python/qpid/qmfconsole.py (original)
+++ incubator/qpid/trunk/qpid/python/qpid/qmfconsole.py Thu Oct 30 20:41:29 2008
@@ -1227,6 +1227,7 @@
       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")