agent: Remove unused parameter in load_config

This change removes an unused parameter.

Change-Id: I376e2823f2af5907f1be2e254c0faddff8116ba7
This commit is contained in:
Mehdi Abaakouk 2018-09-14 16:12:01 +02:00
parent 27f6c3532e
commit 08fd6ef388
1 changed files with 3 additions and 3 deletions

View File

@ -48,17 +48,17 @@ class ConfigManagerBase(object):
def __init__(self, conf):
self.conf = conf
def load_config(self, cfg_file, fallback_cfg_prefix='pipeline/data/'):
def load_config(self, cfg_file):
"""Load a configuration file and set its refresh values."""
if os.path.exists(cfg_file):
cfg_loc = cfg_file
else:
cfg_loc = self.conf.find_file(cfg_file)
if not cfg_loc and fallback_cfg_prefix is not None:
if not cfg_loc:
LOG.debug("No pipeline definitions configuration file found! "
"Using default config.")
cfg_loc = pkg_resources.resource_filename(
__name__, fallback_cfg_prefix + cfg_file)
__name__, 'pipeline/data/' + cfg_file)
else:
raise RuntimeError("No configuration file can be found")
with open(cfg_loc) as fap: