From 3859af4596bd2fba6de0242e900ebd64ea0ae28a Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Wed, 21 Nov 2012 22:44:07 +0000 Subject: 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 --- nova/api/openstack/compute/servers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/api') 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): -- cgit