diff options
author | Rafael H. Schloming <rhs@apache.org> | 2009-10-26 15:49:02 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2009-10-26 15:49:02 +0000 |
commit | c35e274e79604864e6911ce4999fa95e26f27768 (patch) | |
tree | 84616b85b6f4de8a7a3fbd84acf589b53dcd13b5 /python/qpid/driver.py | |
parent | 74d60c79368c1a2e70595ab33aa469e2746009c8 (diff) | |
download | qpid-python-c35e274e79604864e6911ce4999fa95e26f27768.tar.gz |
improved request/response performance by using an I/O based condition instead of the default condition from the python threading module
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@829837 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/driver.py')
-rw-r--r-- | python/qpid/driver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/driver.py b/python/qpid/driver.py index 4f001974d4..93961e5ed0 100644 --- a/python/qpid/driver.py +++ b/python/qpid/driver.py @@ -755,7 +755,7 @@ class Driver: sst.outgoing_idx -= 1 assert msg == m sst.write_cmd(MessageTransfer(destination=_snd._exchange, headers=(dp, mp), - payload=body, sync=True), msg_acked) + payload=body, sync=True), msg_acked) def do_message_transfer(self, xfr): sst = self.get_sst(xfr) |