summaryrefslogtreecommitdiffstats
path: root/mgr
diff options
context:
space:
mode:
Diffstat (limited to 'mgr')
-rw-r--r--mgr/mgr/settings.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mgr/mgr/settings.py b/mgr/mgr/settings.py
index ddedd75..5aebbae 100644
--- a/mgr/mgr/settings.py
+++ b/mgr/mgr/settings.py
@@ -156,10 +156,14 @@ STATIC_URL = '/static/'
LOGGING_CONFIG = None
# yaml configuration of logging
LOGGING_FILE = os.path.join(BASE_DIR, 'mgr/log.yml')
+if 'test' in sys.argv:
+ os.system('sed -i "s|/var/log/onap/vfc/gvnfm-vnfmgr|/tmp|" %s' % LOGGING_FILE)
config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
if 'test' in sys.argv:
+ os.system('sed -i "s|/tmp|/var/log/onap/vfc/gvnfm-vnfmgr|" %s' % LOGGING_FILE)
+
from mgr.pub.config import config
config.REG_TO_MSB_WHEN_START = False
DATABASES = {}