Fix default cache dir name to differ from dashboard's one.

Change-Id: I0a392fde267a9d2db8081ca2af18f241d663546d
This commit is contained in:
Timur Sufiev 2013-11-25 19:47:51 +04:00
parent 46b4d85810
commit 50fdff7b99

View File

@ -55,7 +55,7 @@ def main():
#configuring and initializing cache directory
if cfg.CONF.cache_dir is None:
cfg.CONF.cache_dir = os.path.join(
tempfile.gettempdir(), 'murano-cache'
tempfile.gettempdir(), 'muranorepository-cache'
)
if not os.path.exists(cfg.CONF.cache_dir):
os.mkdir(cfg.CONF.cache_dir)