summaryrefslogtreecommitdiffstats
path: root/nova/rpc.py
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-10-02 11:39:12 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-10-02 11:39:12 -0700
commit3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7 (patch)
tree0e6cf0a94c0159796f774b360cecc80586b17602 /nova/rpc.py
parent5e3da5864825a12da5a1ea1102a6efb6cebe204b (diff)
downloadnova-3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7.tar.gz
nova-3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7.tar.xz
nova-3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7.zip
add missing to_dict
Diffstat (limited to 'nova/rpc.py')
-rw-r--r--nova/rpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index 26eff9c55..feaa4f042 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -255,7 +255,7 @@ def call(context, topic, msg):
msg_id = uuid.uuid4().hex
msg.update({'_msg_id': msg_id})
LOG.debug("MSG_ID is %s" % (msg_id))
- msg.update({'_context': context})
+ msg.update({'_context': context.to_dict()})
class WaitMessage(object):