summaryrefslogtreecommitdiffstats
path: root/yardstick/dispatcher/file.py
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/dispatcher/file.py')
-rw-r--r--yardstick/dispatcher/file.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/yardstick/dispatcher/file.py b/yardstick/dispatcher/file.py
index 8d3c3693d..6fc81d419 100644
--- a/yardstick/dispatcher/file.py
+++ b/yardstick/dispatcher/file.py
@@ -39,5 +39,8 @@ class FileDispatcher(DispatchBase):
def flush_result_data(self):
file_path = self.conf.get('file_path', consts.DEFAULT_OUTPUT_FILE)
- data = {'status': 1, 'result': self.result}
+ res = utils.read_json_from_file(file_path).get('result')
+ res.extend(self.result)
+
+ data = {'status': 0, 'result': res}
utils.write_json_to_file(file_path, data)