summaryrefslogtreecommitdiff
path: root/nova/cache_utils.py
diff options
context:
space:
mode:
authorHieu LE <hieulq@vn.fujitsu.com>2016-05-12 12:29:20 +0700
committerHieu LE <hieulq@vn.fujitsu.com>2016-05-13 12:27:52 +0700
commit466bce576a69d170f1ef08264da7e72ac4a150fb (patch)
tree424f7ce92546cfa820b93671ace9423768218027 /nova/cache_utils.py
parent505bc44615d922c0e9054c3ca48721b26b924caa (diff)
downloadnova-466bce576a69d170f1ef08264da7e72ac4a150fb.tar.gz
Config options: centralize cache options
The config options of the "nova.conf" section "cache" got moved to the new central location "nova/conf/cache.py". Change-Id: I1b7aebb9f7d44ff8312b98c88093bf01f44dfa58 Implements: blueprint centralize-config-options-newton
Diffstat (limited to 'nova/cache_utils.py')
-rw-r--r--nova/cache_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/cache_utils.py b/nova/cache_utils.py
index a4eb02f41d..bc0851c4cb 100644
--- a/nova/cache_utils.py
+++ b/nova/cache_utils.py
@@ -17,12 +17,12 @@
"""Super simple fake memcache client."""
from oslo_cache import core as cache
-from oslo_config import cfg
+import nova.conf
from nova.i18n import _
-CONF = cfg.CONF
+CONF = nova.conf.CONF
WEEK = 604800