summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openstack/common/cache/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstack/common/cache/cache.py b/openstack/common/cache/cache.py
index cdb782b4..e852a0c2 100644
--- a/openstack/common/cache/cache.py
+++ b/openstack/common/cache/cache.py
@@ -24,7 +24,7 @@ from six.moves.urllib import parse
from stevedore import driver
-def _get_olso_configs():
+def _get_oslo_configs():
"""Returns the oslo config options to register."""
# NOTE(flaper87): Oslo config should be
# optional. Instead of doing try / except
@@ -45,7 +45,7 @@ def register_oslo_configs(conf):
:params conf: Config object.
:type conf: `cfg.ConfigOptions`
"""
- conf.register_opts(_get_olso_configs())
+ conf.register_opts(_get_oslo_configs())
def get_cache(url='memory://'):