diff options
Diffstat (limited to 'python/qpid/client.py')
-rw-r--r-- | python/qpid/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qpid/client.py b/python/qpid/client.py index cdceb87bdf..f1800204db 100644 --- a/python/qpid/client.py +++ b/python/qpid/client.py @@ -140,6 +140,9 @@ class ClientDelegate(Delegate): def connection_close(self, ch, msg): self.client.peer.close(msg) + def execution_complete(self, ch, msg): + ch.completion.complete(msg.cumulative_execution_mark) + def close(self, reason): self.client.closed = True self.client.reason = reason |