From 146ebebd374590b952cd6e72b33178363d28e383 Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Wed, 5 May 2010 14:44:23 +0000 Subject: Set daemon mode for the connection thread. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@941321 13f79535-47bb-0310-9956-ffa450edef68 --- extras/qmf/src/py/qmf/console.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extras/qmf/src/py/qmf/console.py b/extras/qmf/src/py/qmf/console.py index 5281423624..83c3e4468f 100644 --- a/extras/qmf/src/py/qmf/console.py +++ b/extras/qmf/src/py/qmf/console.py @@ -1766,6 +1766,8 @@ class ManagedConnection(Thread): def __init__(self, broker): Thread.__init__(self) + self.daemon = True + self.name = "Connection for broker: %s:%d" % (broker.host, broker.port) self.broker = broker self.cv = Condition() self.canceled = False -- cgit v1.2.1