summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJustin Ross <jross@apache.org>2012-10-17 21:42:15 +0000
committerJustin Ross <jross@apache.org>2012-10-17 21:42:15 +0000
commitd1211ef940665ae265fb54f145562d848f728e0d (patch)
tree154279993174af879d17a5f8b3f234d8aab4f9dc /python
parent3fb9152c0c51afaa347d8f9029ecb662b0a591d0 (diff)
downloadqpid-python-d1211ef940665ae265fb54f145562d848f728e0d.tar.gz
QPID-4377: Pass down the timeout argument; patch from Ernie Allen
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1399445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r--python/qpid/messaging/endpoints.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py
index e632c0c5b8..95ff5516d0 100644
--- a/python/qpid/messaging/endpoints.py
+++ b/python/qpid/messaging/endpoints.py
@@ -871,7 +871,7 @@ class Sender(Endpoint):
self.queued += 1
if sync:
- self.sync()
+ self.sync(timeout=timeout)
assert message not in self.session.outgoing
else:
self._wakeup()