From 4c27221d30b8388f155c8f52503a5d66ae75ee32 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Thu, 1 Nov 2012 13:28:41 -0400 Subject: Bump the base rpc version of the network api. In d96102b we bumped the RPC version of the migrate_instance_* calls in the network rpcapi. We did not however bump the associated RPC version in the network manager and as such resizes are now broken. This commit simply bumps the RPC version of the network manager based on the previous change. Fixes LP Bug #1074072. Change-Id: I4b6d6bdbcb7bb68872deee4f54b1c0636012c2cf --- nova/network/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/network/manager.py b/nova/network/manager.py index a944ebd40..0a42d8c61 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -840,7 +840,7 @@ class NetworkManager(manager.SchedulerDependentManager): The one at a time part is to flatten the layout to help scale """ - RPC_API_VERSION = '1.1' + RPC_API_VERSION = '1.2' # If True, this manager requires VIF to create a bridge. SHOULD_CREATE_BRIDGE = False -- cgit