summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2012-11-01 13:28:41 -0400
committerDan Prince <dprince@redhat.com>2012-11-01 16:29:26 -0400
commit4c27221d30b8388f155c8f52503a5d66ae75ee32 (patch)
tree2a6657b43c0d375430b46318189cc0f0efff8623
parent6ee9883b8cb1ef8e503a03229a100e50813abe5a (diff)
downloadnova-4c27221d30b8388f155c8f52503a5d66ae75ee32.tar.gz
nova-4c27221d30b8388f155c8f52503a5d66ae75ee32.tar.xz
nova-4c27221d30b8388f155c8f52503a5d66ae75ee32.zip
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
-rw-r--r--nova/network/manager.py2
1 files changed, 1 insertions, 1 deletions
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