diff options
Diffstat (limited to 'nova/rpc.py')
-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): |