diff --git a/reports/error_details.py b/reports/error_details.py index f59acaf..7c9622b 100644 --- a/reports/error_details.py +++ b/reports/error_details.py @@ -143,7 +143,7 @@ for uuid_dict in updates: _end = _when diff = _end - _start - if diff > 3600: + if diff > 3600 and failure_type == None: failure_type = ">60" key = (operation, image_type_num, cell) diff --git a/reports/pretty.py b/reports/pretty.py index 70b620b..dcd4882 100644 --- a/reports/pretty.py +++ b/reports/pretty.py @@ -113,7 +113,7 @@ def make_report(yesterday=None, start_hour=0, hours=24, percentile=97, end = raw.when diff = end - start - if diff > 3600: + if diff > 3600 and failure_type == None: failure_type = '> 60' key = (operation, image)