summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-11-27 16:07:30 -0500
committerRussell Bryant <rbryant@redhat.com>2012-11-27 16:07:30 -0500
commit071378de19df2129a7d6ac76cdeca41114c05736 (patch)
tree43aed780299946e8de60df7ad3fcbde1fc2a2dc3
parente4f1a70c37352730a4fa1b7466e526e1f3b168ed (diff)
downloadnova-071378de19df2129a7d6ac76cdeca41114c05736.tar.gz
nova-071378de19df2129a7d6ac76cdeca41114c05736.tar.xz
nova-071378de19df2129a7d6ac76cdeca41114c05736.zip
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
-rw-r--r--nova/conductor/rpcapi.py2
1 files changed, 1 insertions, 1 deletions
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')