| Index: appengine/chromium_try_flakes/handlers/flake_issues.py
|
| diff --git a/appengine/chromium_try_flakes/handlers/flake_issues.py b/appengine/chromium_try_flakes/handlers/flake_issues.py
|
| index b048397166083630eff819e1b804392fd271f4ad..edc747869828d21eb0f3192ed7f599124ce53a44 100644
|
| --- a/appengine/chromium_try_flakes/handlers/flake_issues.py
|
| +++ b/appengine/chromium_try_flakes/handlers/flake_issues.py
|
| @@ -523,13 +523,11 @@ class CreateFlakyRun(webapp2.RequestHandler):
|
| # - bot_update PATCH FAILED: Duplicates failure in 'Patch failure' step.
|
| # - ... (retry summary): this is an artificial step to fail the build due
|
| # to another step that has failed earlier (do not double count).
|
| - print step_name, '1', build_result
|
| if (step_name.startswith('[swarming]') or
|
| step_name.endswith(' (retry summary)') or
|
| (step_name == 'Patch failure' and result != build_result.EXCEPTION) or
|
| (step_name == 'bot_update' and 'PATCH FAILED' in step_text)):
|
| continue
|
| - print step_name, '2'
|
|
|
| failed_steps.append(step)
|
|
|
|
|