diff options
author | Justin Ross <jross@apache.org> | 2012-10-17 21:42:15 +0000 |
---|---|---|
committer | Justin Ross <jross@apache.org> | 2012-10-17 21:42:15 +0000 |
commit | 00b74b9c57f2812b746802f2cc8498ce456fbb46 (patch) | |
tree | 154279993174af879d17a5f8b3f234d8aab4f9dc | |
parent | b76369b2afcfabcc1890547fcaff1273a5938b00 (diff) | |
download | qpid-python-00b74b9c57f2812b746802f2cc8498ce456fbb46.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
-rw-r--r-- | python/qpid/messaging/endpoints.py | 2 |
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() |