diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-12-08 18:35:35 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-12-08 18:35:35 +0000 |
| commit | c9586a6bbab528a3c57eac295cf3f1952e86bf3d (patch) | |
| tree | 7b11448dda05006bdd048b80b7de620773e680bf | |
| parent | a8ec9ad64fd396a7cef9159f900a61b89bba0271 (diff) | |
| download | qpid-python-c9586a6bbab528a3c57eac295cf3f1952e86bf3d.tar.gz | |
fix type conversion error
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1043581 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/extras/qmf/src/py/qmf/console.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/extras/qmf/src/py/qmf/console.py b/qpid/extras/qmf/src/py/qmf/console.py index 478b017649..15e12fbb6b 100644 --- a/qpid/extras/qmf/src/py/qmf/console.py +++ b/qpid/extras/qmf/src/py/qmf/console.py @@ -2227,6 +2227,8 @@ class Broker(Thread): self.port = port self.mechanisms = authMechs self.ssl = ssl + if connTimeout is not None: + connTimeout = float(connTimeout) self.connTimeout = connTimeout self.authUser = authUser self.authPass = authPass |
