From 50fdff7b998dc6755ab2d8395f067986b137db06 Mon Sep 17 00:00:00 2001 From: Timur Sufiev Date: Mon, 25 Nov 2013 19:47:51 +0400 Subject: [PATCH] Fix default cache dir name to differ from dashboard's one. Change-Id: I0a392fde267a9d2db8081ca2af18f241d663546d --- muranorepository/cmd/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/muranorepository/cmd/run.py b/muranorepository/cmd/run.py index ebf3c2c..cab1a30 100644 --- a/muranorepository/cmd/run.py +++ b/muranorepository/cmd/run.py @@ -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)