diff options
author | Mark McLoughlin <markmc@redhat.com> | 2012-11-17 22:50:17 +0000 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2012-11-20 00:00:21 +0000 |
commit | 94d87bce212f91c54370784a5544f1a07625938a (patch) | |
tree | cfc91dedd5f26f53b3824603763bc63878607d1e /nova/tests/test_notifications.py | |
parent | e60d593b5ec254bb74fca39db7164f57db90be47 (diff) | |
download | nova-94d87bce212f91c54370784a5544f1a07625938a.tar.gz |
Remove nova.config.CONF
Modules import nova.config for two reasons right now - firstly, to
reference nova.config.CONF and, secondly, if they use one of the
options defined in nova.config.
Often modules import nova.openstack.common.cfg and nova.config
which is a bit pointless since they could just use cfg.CONF if
they just want to nova.config in order to reference CONF.
Let's just use cfg.CONF everywhere and we can explicitly state
where we actually require options defined in nova.config.
Change-Id: Ie4184a74e3e78c99658becb18dce1c2087e450bb
Diffstat (limited to 'nova/tests/test_notifications.py')
-rw-r--r-- | nova/tests/test_notifications.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/tests/test_notifications.py b/nova/tests/test_notifications.py index 21f869d5e6..4f5adc99aa 100644 --- a/nova/tests/test_notifications.py +++ b/nova/tests/test_notifications.py @@ -22,7 +22,6 @@ import copy from nova.compute import instance_types from nova.compute import task_states from nova.compute import vm_states -from nova import config from nova import context from nova import db from nova.network import api as network_api |