|
@@ -36,6 +36,7 @@ stout_handle.addFilter(ContextFilter())
|
|
logger.addHandler(stout_handle)
|
|
logger.addHandler(stout_handle)
|
|
|
|
|
|
config_path = path.abspath(__file__).split("utils")[0] + 'conf' + sep + 'etl_config_dev.yaml'
|
|
config_path = path.abspath(__file__).split("utils")[0] + 'conf' + sep + 'etl_config_dev.yaml'
|
|
|
|
+config_path = environ.get('ETL_CONF', config_path)
|
|
config = yaml_conf(environ.get('ETL_CONF', config_path))
|
|
config = yaml_conf(environ.get('ETL_CONF', config_path))
|
|
log_path_dir = read_conf(config, 'log_path_dir', "/data/logs")
|
|
log_path_dir = read_conf(config, 'log_path_dir', "/data/logs")
|
|
|
|
|