diff options
author | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-10-02 11:39:12 -0700 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@yahoo.com> | 2010-10-02 11:39:12 -0700 |
commit | 3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7 (patch) | |
tree | 0e6cf0a94c0159796f774b360cecc80586b17602 | |
parent | 5e3da5864825a12da5a1ea1102a6efb6cebe204b (diff) | |
download | nova-3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7.tar.gz nova-3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7.tar.xz nova-3b3c72fc75b5dff8a26c59b0d4bb7f8ef34a18e7.zip |
add missing to_dict
-rw-r--r-- | nova/rpc.py | 2 |
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): |