From 95e23f9a8a2add6c948c1daed2efa58516b2ae7c Mon Sep 17 00:00:00 2001 From: Chris Yeoh Date: Thu, 6 Jun 2013 21:58:43 +0930 Subject: [PATCH] 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 | 10 +++++----- 1 file changed, 5 insertions(+), 5 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 - 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 - ips = nova.api.openstack.compute.plugins.v3.ips:IPs consoles = nova.api.openstack.compute.plugins.v3.consoles:Consoles + extension_info = nova.api.openstack.compute.plugins.v3.extension_info:ExtensionInfo + fixed_ips = nova.api.openstack.compute.plugins.v3.fixed_ips:FixedIPs + ips = nova.api.openstack.compute.plugins.v3.ips:IPs + 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