diff options
| author | Mark McLoughlin <markmc@redhat.com> | 2012-11-21 22:44:07 +0000 |
|---|---|---|
| committer | Mark McLoughlin <markmc@redhat.com> | 2012-11-21 22:44:07 +0000 |
| commit | 3859af4596bd2fba6de0242e900ebd64ea0ae28a (patch) | |
| tree | c295c8c2a277f51b42855a22f4282d70fd8968d2 /nova/api | |
| parent | 5582d203b77741a005687a87673d9fce11b5ee09 (diff) | |
| download | nova-3859af4596bd2fba6de0242e900ebd64ea0ae28a.tar.gz nova-3859af4596bd2fba6de0242e900ebd64ea0ae28a.tar.xz nova-3859af4596bd2fba6de0242e900ebd64ea0ae28a.zip | |
Move compute opts from nova.config
A bunch of config options are declared in nova.config but only used
in nova.compute.api or nova.compute.manager. Move them to the module
which uses them.
blueprint: scope-config-opts
Change-Id: Id33182e9276f61e799305b6b743d1a1f34f25625
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/compute/servers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/compute/servers.py b/nova/api/openstack/compute/servers.py index e386ee1c7..d360026dd 100644 --- a/nova/api/openstack/compute/servers.py +++ b/nova/api/openstack/compute/servers.py @@ -45,7 +45,7 @@ CONF = cfg.CONF CONF.import_opt('enable_instance_password', 'nova.config') CONF.import_opt('network_api_class', 'nova.config') CONF.import_opt('password_length', 'nova.config') -CONF.import_opt('reclaim_instance_interval', 'nova.config') +CONF.import_opt('reclaim_instance_interval', 'nova.compute.manager') def make_fault(elem): |
