summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorChris Yeoh <cyeoh@au1.ibm.com>2013-06-06 21:58:43 +0930
committerChris Yeoh <cyeoh@au1.ibm.com>2013-06-06 21:58:43 +0930
commit7e2fe389f4a5a795e4d0c82f034e0af164af228c (patch)
treefa97d7ed7895c455c09bdc25bb682f8ab88f7ff4 /setup.cfg
parent8b632660aff27582c9b8ced3e0642399f3139f81 (diff)
downloadnova-7e2fe389f4a5a795e4d0c82f034e0af164af228c.tar.gz
nova-7e2fe389f4a5a795e4d0c82f034e0af164af228c.tar.xz
nova-7e2fe389f4a5a795e4d0c82f034e0af164af228c.zip
Alphabetize v3 API extension entry point list
Alphabetize the v3 API extension point list in setup.cfg. With lots of extensions being ported to V3 and an entry needed in setup.cfg for each one and multiple people working on the ports if we always just add an entry to the end of the list we are going to get a lot of merge conflicts. To minimise the number of conflicts we'll try keeping the list in alphabetical order and the number of conflicts should drop as the list gets longer. Change-Id: I386ec9bdb99660861d80f47923855e73f474a15f
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index 8e6e77186..1baa22940 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -54,12 +54,12 @@ console_scripts =
nova-xvpvncproxy = nova.cmd.xvpvncproxy:main
nova.api.v3.extensions =
- fixed_ips = nova.api.openstack.compute.plugins.v3.fixed_ips:FixedIPs
+ consoles = nova.api.openstack.compute.plugins.v3.consoles:Consoles
extension_info = nova.api.openstack.compute.plugins.v3.extension_info:ExtensionInfo
- servers = nova.api.openstack.compute.plugins.v3.servers:Servers
- keypairs = nova.api.openstack.compute.plugins.v3.keypairs:Keypairs
+ fixed_ips = nova.api.openstack.compute.plugins.v3.fixed_ips:FixedIPs
ips = nova.api.openstack.compute.plugins.v3.ips:IPs
- consoles = nova.api.openstack.compute.plugins.v3.consoles:Consoles
+ keypairs = nova.api.openstack.compute.plugins.v3.keypairs:Keypairs
+ servers = nova.api.openstack.compute.plugins.v3.servers:Servers
nova.api.v3.extensions.server.create =
keypairs_create = nova.api.openstack.compute.plugins.v3.keypairs:Keypairs