summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/rpc.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index 04198a4a6..f43291c4b 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -201,6 +201,11 @@ class AdapterConsumer(Consumer):
try:
rval = node_func(context=ctxt, **node_args)
if msg_id:
+ # TODO(termie): re-enable when fix the yielding issue
+ #if hasattr(rval, 'send'):
+ # logging.error('rval! %s', rval)
+ # for x in rval:
+ # msg_reply(msg_id, x, None)
msg_reply(msg_id, rval, None)
except Exception as e:
logging.exception('Exception during message handling')