summaryrefslogtreecommitdiff
path: root/keystone/endpoint_policy
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2016-06-24 00:59:11 +0000
committerDolph Mathews <dolph.mathews@gmail.com>2016-06-24 17:02:15 +0000
commitd9c6b50a3ae514e640fa13a344e59fe3649ee0ef (patch)
treee42778fa83bc6725ba1e090bcb44cf032a27b7bd /keystone/endpoint_policy
parentf6f4eb2df1fde05490f47e04a912ef60b3760335 (diff)
downloadkeystone-d9c6b50a3ae514e640fa13a344e59fe3649ee0ef.tar.gz
Replace keystone.common.config with keystone.conf package
keystone.common.config is 1200+ lines of super dense, merge-conflict prone, difficult to navigate, and finicky to maintain code. Let's follow nova's lead and break it down into more manageable modules. This patch creates a new Python package, keystone.conf, and moves all of our configuration options into it, mirroring nova's nova.conf package. There are a couple special modules in keystone.conf introduced here as well: - keystone.conf.__init__: This causes all of Keystone options to be registered on import, so consumers of keystone.conf don't have races with config initialization code while trying to use oslo_config.cfg.CONF directly (keystone.conf replaces all uses for oslo_config.cfg.CONF in keystone). - keystone.conf.base: Keystone's [DEFAULT] group options. I'd prefer this to be called 'default.py', but I'm just copying nova's lead here. - keystone.conf.opts: The entry point for oslo.config itself. - keystone.conf.constants: There are a few constants (deprecation messages, default paths, etc) that are used by multiple configuration modules, so they need to live in a common place. Change-Id: Ia3daffe3fef111b42de203762e966cd14d8927e2
Diffstat (limited to 'keystone/endpoint_policy')
-rw-r--r--keystone/endpoint_policy/core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/endpoint_policy/core.py b/keystone/endpoint_policy/core.py
index 546d1d80c..128872931 100644
--- a/keystone/endpoint_policy/core.py
+++ b/keystone/endpoint_policy/core.py
@@ -12,18 +12,18 @@
# License for the specific language governing permissions and limitations
# under the License.
-from oslo_config import cfg
from oslo_log import log
from oslo_log import versionutils
from keystone.common import dependency
from keystone.common import manager
+import keystone.conf
from keystone.endpoint_policy.backends import base
from keystone import exception
from keystone.i18n import _, _LE, _LW
-CONF = cfg.CONF
+CONF = keystone.conf.CONF
LOG = log.getLogger(__name__)