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
This commit is contained in:
Chris Yeoh
2013-10-23 11:09:47 +10:30
parent 332741760e
commit 0a853eb65c

View File

@@ -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):