Fixed lint errors

This commit is contained in:
dvanaken 2020-04-03 01:48:41 -04:00 committed by Dana Van Aken
parent 78c2fa283a
commit 94dcc0530d
2 changed files with 2 additions and 3 deletions

View File

@ -79,13 +79,12 @@ def run_background_tasks():
workload.delete() workload.delete()
continue continue
elif num_wkld_results < MIN_WORKLOAD_RESULTS_COUNT: if num_wkld_results < MIN_WORKLOAD_RESULTS_COUNT:
# Check that there are enough results in the workload # Check that there are enough results in the workload
LOG.info("Not enough results in workload %s (# results: %s, # required: %s).", LOG.info("Not enough results in workload %s (# results: %s, # required: %s).",
workload_name, num_wkld_results, MIN_WORKLOAD_RESULTS_COUNT) workload_name, num_wkld_results, MIN_WORKLOAD_RESULTS_COUNT)
continue continue
LOG.info("Aggregating data for workload %s...", workload_name) LOG.info("Aggregating data for workload %s...", workload_name)
# Aggregate the knob & metric data for this workload # Aggregate the knob & metric data for this workload
knob_data, metric_data = aggregate_data(wkld_results) knob_data, metric_data = aggregate_data(wkld_results)