diff options
| author | Gordon Sim <gsim@apache.org> | 2008-04-14 21:11:25 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-04-14 21:11:25 +0000 |
| commit | b8c35ee8da8ad85f679894197d1764c4c127c22c (patch) | |
| tree | 208915499557210c2fd91d263ea281f60f73827f /qpid/python | |
| parent | 9c66633bd604b742003b0ecef308ece060199e79 (diff) | |
| download | qpid-python-b8c35ee8da8ad85f679894197d1764c4c127c22c.tar.gz | |
* Fix interpretation of accept-mode, 0 == EXPLICIT
* Ensure accepts are taken into account in command sequence
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@647999 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/session.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qpid/python/qpid/session.py b/qpid/python/qpid/session.py index bbe2b326d6..427a403b90 100644 --- a/qpid/python/qpid/session.py +++ b/qpid/python/qpid/session.py @@ -281,6 +281,9 @@ class Delegate: def __init__(self, session): self.session = session + #XXX: do something with incoming accepts + def message_accept(self, ma): None + def execution_result(self, er): future = self.session.results.pop(er.command_id) future.set(er.value) |
