From 0a853eb65c7159c909871540039995d7ae9642db Mon Sep 17 00:00:00 2001 From: Chris Yeoh Date: Wed, 23 Oct 2013 11:09:47 +1030 Subject: [PATCH] Add flavor-extra-specs to core for V3 API Adds the flavor-extra-specs plugin to the core list for the V3 API. This is part of the process of adding all of the flavor related extensions to core, with the exception of rxtx, as per the discussion here: https://etherpad.openstack.org/p/NovaV3APICore Partially implements blueprint nova-v3-api Change-Id: Id4b4fad5e584bdf2bbbaaae579a07e28c312ef34 --- nova/api/openstack/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py index fed00f558c79..ad21a903550e 100644 --- a/nova/api/openstack/__init__.py +++ b/nova/api/openstack/__init__.py @@ -64,7 +64,8 @@ CONF.register_opts(api_opts, api_opts_group) API_V3_CORE_EXTENSIONS = set(['consoles', 'extensions', 'flavors', 'ips', 'limits', 'servers', 'server-metadata', 'keypairs', 'console-output', 'versions', - 'flavor-manage', 'flavor-access']) + 'flavor-manage', 'flavor-access', + 'flavor-extra-specs']) class FaultWrapper(base_wsgi.Middleware):