diff options
-rw-r--r-- | yardstick/common/utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yardstick/common/utils.py b/yardstick/common/utils.py index 3c5895f1e..4ad7cba7f 100644 --- a/yardstick/common/utils.py +++ b/yardstick/common/utils.py @@ -133,7 +133,9 @@ def source_env(env_file): def read_json_from_file(path): with open(path, 'r') as f: - return jsonutils.load(f) + j = f.read() + # don't use jsonutils.load() it conflicts with already decoded input + return jsonutils.loads(j) def write_json_to_file(path, data, mode='w'): |