From 213c8618b83dc56ca8aac704f455c11604361b15 Mon Sep 17 00:00:00 2001 From: fmenguy Date: Mon, 15 Jul 2019 14:16:33 +0200 Subject: NFVBENCH-145 Config file not found. No explicit error Change-Id: I1c13e2c52eaa025863ff4be1b062d9ec04867c57 Signed-off-by: fmenguy --- nfvbench/config.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nfvbench/config.py b/nfvbench/config.py index 0f0d64a..dba0962 100644 --- a/nfvbench/config.py +++ b/nfvbench/config.py @@ -47,6 +47,12 @@ def config_loads(cfg_text, from_cfg=None, whitelist_keys=None): except TypeError: # empty string cfg = AttrDict() + except ValueError as e: + # In case of wrong path or file not readable or string not well formatted + LOG.error("String %s is not well formatted. Please verify your yaml/json string. " + "If string is a file path, file was not found. Please use correct path and " + "verify it is visible to container if you run nfvbench in container.", cfg_text) + raise Exception(e) if from_cfg: if not whitelist_keys: whitelist_keys = [] -- cgit 1.2.3-korg