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

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

Issue 1912483004: [Findit] Add failure type to dashboard. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 4 years, 8 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/handlers/list_analyses.py
diff --git a/appengine/findit/handlers/list_analyses.py b/appengine/findit/handlers/list_analyses.py
index 6bd12fbbcaeae1f895b1b21eca25e87d7359836b..1f7985950ce5b180b816502470560244238ec452 100644
--- a/appengine/findit/handlers/list_analyses.py
+++ b/appengine/findit/handlers/list_analyses.py
@@ -83,10 +83,11 @@ class ListAnalyses(BaseHandler):
'builder_name': analysis_result.builder_name,
'build_number': analysis_result.build_number,
'build_start_time': FormatDatetime(analysis_result.build_start_time),
+ 'failure_type': analysis_result.failure_type_str,
'status': analysis_result.status,
'status_description': analysis_result.status_description,
'suspected_cls': analysis_result.suspected_cls,
- 'result_status': analysis_result.result_status_description
+ 'result_status': analysis_result.result_status_description,
}
analyses.append(analysis)
« no previous file with comments | « appengine/findit/common/waterfall/failure_type.py ('k') | appengine/findit/handlers/test/list_analyses_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698