Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4545)

Unified Diff: appengine/findit/waterfall/extractors.py

Issue 838003004: [Findit] Add three sub-pipelines to analyze build failure. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/findit/waterfall/extractors.py
diff --git a/appengine/findit/waterfall/extractors.py b/appengine/findit/waterfall/extractors.py
index 3c3f463aebbad63a09530cccd03f28cb6332c5e8..015f02312bf4bf931f27f2437104ef85b7b2b6bf 100644
--- a/appengine/findit/waterfall/extractors.py
+++ b/appengine/findit/waterfall/extractors.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
+# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -79,4 +79,4 @@ def ExtractSignal(master_name, bot_name, step_name, test_name, failure_log):
# Fall back to a general-but-maybe-not-accurate extractor.
extractor_class = EXTRACTORS.get(step_name, GeneralExtractor)
return extractor_class().Extract(
- master_name, bot_name, step_name, test_name, failure_log)
+ failure_log, test_name, step_name, bot_name, master_name)

Powered by Google App Engine
This is Rietveld 408576698