You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2015/10/02 21:58:58 UTC

svn commit: r1706484 - /qpid/trunk/qpid/extras/qmf/src/py/qmf/console.py

Author: kgiusti
Date: Fri Oct  2 19:58:57 2015
New Revision: 1706484

URL: http://svn.apache.org/viewvc?rev=1706484&view=rev
Log:
QPID-6767: allow 'service' key in connection parameters.

Modified:
    qpid/trunk/qpid/extras/qmf/src/py/qmf/console.py

Modified: qpid/trunk/qpid/extras/qmf/src/py/qmf/console.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/extras/qmf/src/py/qmf/console.py?rev=1706484&r1=1706483&r2=1706484&view=diff
==============================================================================
--- qpid/trunk/qpid/extras/qmf/src/py/qmf/console.py (original)
+++ qpid/trunk/qpid/extras/qmf/src/py/qmf/console.py Fri Oct  2 19:58:57 2015
@@ -2408,8 +2408,10 @@ class Broker(Thread):
         connSock = ssl(sock, certfile=certfile, keyfile=keyfile)
       else:
         connSock = sock
+      if not 'service' in self.connectArgs:
+          self.connectArgs['service'] = 'qpidd'
       self.conn = Connection(connSock, username=self.authUser, password=self.authPass,
-                             mechanism = self.mechanisms, host=self.host, service="qpidd",
+                             mechanism = self.mechanisms, host=self.host,
                              **self.connectArgs)
       def aborted():
         raise Timeout("Waiting for connection to be established with broker")



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org