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 | ac04e936aed7ecf6ecb2349f26f591bf777c7e05 (patch) | |
| tree | 8bab11df74f7730ce942582438cdaaed71de743c /qpid/python | |
| parent | 0570110095bec28ab2f00b483e9f8b19500de219 (diff) | |
| download | qpid-python-ac04e936aed7ecf6ecb2349f26f591bf777c7e05.tar.gz | |
fixed bug in management of incoming executed set
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1024348 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/qpid/messaging/driver.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/python/qpid/messaging/driver.py b/qpid/python/qpid/messaging/driver.py index bdcdb26180..f6378c39ea 100644 --- a/qpid/python/qpid/messaging/driver.py +++ b/qpid/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) |
