diff options
| author | Russell Bryant <rbryant@redhat.com> | 2012-11-27 16:07:30 -0500 |
|---|---|---|
| committer | Russell Bryant <rbryant@redhat.com> | 2012-11-27 16:07:30 -0500 |
| commit | 071378de19df2129a7d6ac76cdeca41114c05736 (patch) | |
| tree | 43aed780299946e8de60df7ad3fcbde1fc2a2dc3 | |
| parent | e4f1a70c37352730a4fa1b7466e526e1f3b168ed (diff) | |
| download | nova-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.py | 2 |
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') |
