summaryrefslogtreecommitdiff
path: root/python/qpid/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/qpid/client.py')
-rw-r--r--python/qpid/client.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/qpid/client.py b/python/qpid/client.py
index f1800204db..3efd79c389 100644
--- a/python/qpid/client.py
+++ b/python/qpid/client.py
@@ -110,7 +110,7 @@ class ClientDelegate(Delegate):
#todo: just override the params, i.e. don't require them
# all to be included in tune_params
msg.tune_ok(**self.client.tune_params)
- else:
+ else:
msg.tune_ok(*msg.frame.args)
self.client.started.set()
@@ -143,6 +143,10 @@ class ClientDelegate(Delegate):
def execution_complete(self, ch, msg):
ch.completion.complete(msg.cumulative_execution_mark)
+ def execution_result(self, ch, msg):
+ future = ch.futures[msg.command_id]
+ future.put_response(ch, msg.data)
+
def close(self, reason):
self.client.closed = True
self.client.reason = reason