diff options
author | Rafael H. Schloming <rhs@apache.org> | 2010-10-19 18:32:29 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2010-10-19 18:32:29 +0000 |
commit | 346e5a55b9152ab603bf8b15bd7718beb9d6ff76 (patch) | |
tree | 6bb90a548f2d99ade6c819be50095266dc20bea7 /python | |
parent | 91d8fc1b89c04891c6b1798a53671bd61860e462 (diff) | |
download | qpid-python-346e5a55b9152ab603bf8b15bd7718beb9d6ff76.tar.gz |
fixed bug in management of incoming executed set
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1024348 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r-- | python/qpid/messaging/driver.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/qpid/messaging/driver.py b/python/qpid/messaging/driver.py index bdcdb26180..f6378c39ea 100644 --- a/python/qpid/messaging/driver.py +++ b/python/qpid/messaging/driver.py @@ -791,6 +791,7 @@ class Engine: def do_execution_result(self, er): sst = self.get_sst(er) sst.results[er.command_id] = er.value + sst.executed.add(er.id) def do_execution_exception(self, ex): sst = self.get_sst(ex) |