From 1d7ebf43efde946d3fd66b4b0365a41c3b210063 Mon Sep 17 00:00:00 2001 From: Alex Krzos Date: Wed, 16 Dec 2015 23:05:03 -0500 Subject: [PATCH] Fix issue when graphing with rallyplot on file without results. Change-Id: I71c72f822608645db700fa37c7476723a1f6fbe5 --- graphing/rallyplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphing/rallyplot.py b/graphing/rallyplot.py index c2e2214e4..91896a023 100755 --- a/graphing/rallyplot.py +++ b/graphing/rallyplot.py @@ -83,7 +83,7 @@ def main(): out, err = grep_cmd.communicate() if len(out) == 0: print 'Could not find results. Setting to -1' - compiled_issues.append(result_file) + compiled_issues.append(r_file) compiled_results[service][test][iter_num][w_count][concurrency]['Min'] = '-1' compiled_results[service][test][iter_num][w_count][concurrency]['Median'] = '-1' compiled_results[service][test][iter_num][w_count][concurrency]['90%ile'] = '-1'