From 7e2fe389f4a5a795e4d0c82f034e0af164af228c Mon Sep 17 00:00:00 2001 From: Chris Yeoh Date: Thu, 6 Jun 2013 21:58:43 +0930 Subject: 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 --- setup.cfg | 8 ++++---- 1 file 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 -- cgit