summaryrefslogtreecommitdiffstats
path: root/nova/config.py
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2013-01-08 07:38:34 +0000
committerMark McLoughlin <markmc@redhat.com>2013-01-09 08:15:42 +0000
commit4c43371fd540f81320fb956266393a089e6d56dd (patch)
treea0df606297ee1fb3353801f392d75ed8a7a9ebce /nova/config.py
parent39ce4032bb62bf62e84b9a4191e16a28e4a68454 (diff)
downloadnova-4c43371fd540f81320fb956266393a089e6d56dd.tar.gz
nova-4c43371fd540f81320fb956266393a089e6d56dd.tar.xz
nova-4c43371fd540f81320fb956266393a089e6d56dd.zip
Move api_class options to where they are used
The compute_api_class, network_api_class and volume_api_class options are only used in their respective modules, so move them there. blueprint: scope-config-opts Change-Id: Ib0497f46b44c4b3af7319550cc64c09d629ea362
Diffstat (limited to 'nova/config.py')
-rw-r--r--nova/config.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/nova/config.py b/nova/config.py
index bee416cd3..37f58b2f0 100644
--- a/nova/config.py
+++ b/nova/config.py
@@ -87,15 +87,6 @@ global_opts = [
cfg.BoolOpt('use_cow_images',
default=True,
help='Whether to use cow images'),
- cfg.StrOpt('compute_api_class',
- default='nova.compute.api.API',
- help='The full class name of the compute API class to use'),
- cfg.StrOpt('network_api_class',
- default='nova.network.api.API',
- help='The full class name of the network API class to use'),
- cfg.StrOpt('volume_api_class',
- default='nova.volume.cinder.API',
- help='The full class name of the volume API class to use'),
]
cfg.CONF.register_opts(global_opts)