diff options
author | Ted Ross <tross@apache.org> | 2009-03-27 20:46:24 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-03-27 20:46:24 +0000 |
commit | b264a276f994526ce24062c3f852fdd658857d29 (patch) | |
tree | 6aedda9cc832c27d39856a6bb3f9dcc0b64ee146 /python/qpid/testlib.py | |
parent | 2c8be931523ca30352ed01164ff70ac0f60fc02a (diff) | |
download | qpid-python-b264a276f994526ce24062c3f852fdd658857d29.tar.gz |
QPID-1702 QPID-1706
Updated qmf console in Python and Ruby
- Added support for asynchronous method invocation
- Added option to override timeout for method request and get request
- Added exception handler in delegates.rb to catch Sasl errors
- Added tests for the async method features
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@759341 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/testlib.py')
-rw-r--r-- | python/qpid/testlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/testlib.py b/python/qpid/testlib.py index 7f5ac1fcd2..114a56de08 100644 --- a/python/qpid/testlib.py +++ b/python/qpid/testlib.py @@ -365,8 +365,8 @@ class TestBase010(unittest.TestCase): self.session = self.conn.session("test-session", timeout=10) self.qmf = None - def startQmf(self): - self.qmf = qmf.console.Session() + def startQmf(self, handler=None): + self.qmf = qmf.console.Session(handler) self.qmf_broker = self.qmf.addBroker(str(testrunner.url)) def connect(self, host=None, port=None): |