summaryrefslogtreecommitdiff
path: root/nova/manager.py
diff options
context:
space:
mode:
authorPushkar Umaranikar <pushkar.umaranikar@intel.com>2016-03-17 20:30:39 +0000
committerPushkar Umaranikar <pushkar.umaranikar@intel.com>2016-04-24 18:15:05 +0000
commitd619ad6ba15df1cf7dc92ddf84d1c65af018682f (patch)
tree4e14035baf37f095ae3dd04e9dc0bd1bf79c96a6 /nova/manager.py
parentc9fbba7661d0469026b4bd58a5540cdf99ac7aff (diff)
downloadnova-d619ad6ba15df1cf7dc92ddf84d1c65af018682f.tar.gz
Config options: Centralize netconf options
The config options of the section "nova/netconf" got moved to the new central location "nova/conf/netconf.py" Change-Id: I8a17b6f00b15e03de55385fc0206bdc82441304a Depends-On: I0da2ad7daa942b85c3395dc4861c6e18368ece88 Implements: blueprint centralize-config-options-newton
Diffstat (limited to 'nova/manager.py')
-rw-r--r--nova/manager.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/nova/manager.py b/nova/manager.py
index aa1a762d06..7100300264 100644
--- a/nova/manager.py
+++ b/nova/manager.py
@@ -51,15 +51,14 @@ This module provides Manager, a base class for managers.
"""
-from oslo_config import cfg
from oslo_service import periodic_task
+import nova.conf
from nova.db import base
from nova import rpc
-CONF = cfg.CONF
-CONF.import_opt('host', 'nova.netconf')
+CONF = nova.conf.CONF
class PeriodicTasks(periodic_task.PeriodicTasks):