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 | 0f84b52d3d83d522cdd1242cce5bffca8ee74f2a (patch) | |
tree | 7b9a15376c2b714a0b3faba5d2fec017ea29a7c4 /python/qpid/session.py | |
parent | 8ae46d1e412f6c65869c8e1be9a8a68803769510 (diff) | |
download | qpid-python-0f84b52d3d83d522cdd1242cce5bffca8ee74f2a.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/qpid@647999 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/session.py')
-rw-r--r-- | python/qpid/session.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qpid/session.py b/python/qpid/session.py index bbe2b326d6..427a403b90 100644 --- a/python/qpid/session.py +++ b/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) |