From b6b3f0d233dc362c3209c5a20ece71f4ce4c05bc Mon Sep 17 00:00:00 2001 From: Allen Gao Date: Wed, 30 Mar 2016 15:41:02 +0800 Subject: [PATCH] config options: remove the scheduler import_opt()s After the centralize of the config options in nova/conf/scheduler.py, the import_opt()s should be removed now. Change-Id: I117b1aade8cd02dc10fe91d91920e02fb4d47ef2 Implements: blueprint centralize-config-options-newton --- nova/scheduler/utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nova/scheduler/utils.py b/nova/scheduler/utils.py index 5e8b8c27d7ac..c47628c951fd 100644 --- a/nova/scheduler/utils.py +++ b/nova/scheduler/utils.py @@ -36,8 +36,6 @@ from nova import rpc LOG = logging.getLogger(__name__) CONF = nova.conf.CONF -CONF.import_opt('scheduler_default_filters', 'nova.scheduler.host_manager') -CONF.import_opt('scheduler_weight_classes', 'nova.scheduler.host_manager') GroupDetails = collections.namedtuple('GroupDetails', ['hosts', 'policies', 'members'])