summaryrefslogtreecommitdiffstats
path: root/nova/scheduler/rpcapi.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-12-13 00:00:26 +0000
committerGerrit Code Review <review@openstack.org>2012-12-13 00:00:26 +0000
commit31f0eec568e4b70d84b55080790dce317f1303c7 (patch)
tree045883806b29a406172157b7f394193d28071278 /nova/scheduler/rpcapi.py
parente467a0a1fe42560753abafb530e5b50c6d5b6428 (diff)
parentd6c89b5d8b77dcdac0d217cf623455735ef91f8b (diff)
downloadnova-31f0eec568e4b70d84b55080790dce317f1303c7.tar.gz
nova-31f0eec568e4b70d84b55080790dce317f1303c7.tar.xz
nova-31f0eec568e4b70d84b55080790dce317f1303c7.zip
Merge "Make update_service_capabilities() accept a list of capabilities"
Diffstat (limited to 'nova/scheduler/rpcapi.py')
-rw-r--r--nova/scheduler/rpcapi.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/nova/scheduler/rpcapi.py b/nova/scheduler/rpcapi.py
index f368e95a0..4bc6e0e45 100644
--- a/nova/scheduler/rpcapi.py
+++ b/nova/scheduler/rpcapi.py
@@ -47,6 +47,8 @@ class SchedulerAPI(nova.openstack.common.rpc.proxy.RpcProxy):
2.1 - Add image_id to create_volume()
2.2 - Remove reservations argument to create_volume()
2.3 - Remove create_volume()
+ 2.4 - Change update_service_capabilities()
+ - accepts a list of capabilities
'''
#
@@ -102,4 +104,5 @@ class SchedulerAPI(nova.openstack.common.rpc.proxy.RpcProxy):
capabilities):
self.fanout_cast(ctxt, self.make_msg('update_service_capabilities',
service_name=service_name, host=host,
- capabilities=capabilities))
+ capabilities=capabilities),
+ version='2.4')