From 071378de19df2129a7d6ac76cdeca41114c05736 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 27 Nov 2012 16:07:30 -0500 Subject: Add version to conductor migration_update message. I forgot to add the minimum version requirement for the conductor rpc call to do a migration update. This fixes that mistake. Part of blueprint no-db-compute. Change-Id: I377a3c1d213abf203127eabd91095061156febc3 --- nova/conductor/rpcapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/conductor/rpcapi.py b/nova/conductor/rpcapi.py index ae9ee47e2..15750da76 100644 --- a/nova/conductor/rpcapi.py +++ b/nova/conductor/rpcapi.py @@ -47,4 +47,4 @@ class ConductorAPI(nova.openstack.common.rpc.proxy.RpcProxy): migration_p = jsonutils.to_primitive(migration) msg = self.make_msg('migration_update', migration=migration_p, status=status) - return self.call(context, msg) + return self.call(context, msg, version='1.1') -- cgit