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

Unified Diff: appengine/findit/handlers/build_failure.py

Issue 2086113004: [Findit] Show build analysis references in UI for Findit Cross-platform auto-triage (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@build-matching
Patch Set: Rebased on tip of tree Created 4 years, 5 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
« no previous file with comments | « appengine/findit/common/base_handler.py ('k') | appengine/findit/handlers/test/triage_analysis_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/handlers/build_failure.py
diff --git a/appengine/findit/handlers/build_failure.py b/appengine/findit/handlers/build_failure.py
index ad8147f1534f82deb261b3d5b9a078ba70abdc83..dc0c28e7380f21eace98ed7ddfeae6bc875bb525 100644
--- a/appengine/findit/handlers/build_failure.py
+++ b/appengine/findit/handlers/build_failure.py
@@ -329,8 +329,15 @@ class BuildFailure(BaseHandler):
'analysis_completed': analysis.completed,
'analysis_failed': analysis.failed,
'analysis_correct': analysis.correct,
+ 'analysis_is_duplicate': analysis.is_duplicate,
'triage_history': _GetTriageHistory(analysis),
'show_triage_help_button': self._ShowTriageHelpButton(),
+ 'triage_reference_analysis_master_name':
+ analysis.triage_reference_analysis_master_name,
+ 'triage_reference_analysis_builder_name':
+ analysis.triage_reference_analysis_builder_name,
+ 'triage_reference_analysis_build_number':
+ analysis.triage_reference_analysis_build_number
}
def _PrepareDataForCompileFailure(self, analysis):
« no previous file with comments | « appengine/findit/common/base_handler.py ('k') | appengine/findit/handlers/test/triage_analysis_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698