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

Unified Diff: appengine/findit/model/build_analysis.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: Address comments. 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/model/build_analysis.py
diff --git a/appengine/findit/model/build_analysis.py b/appengine/findit/model/build_analysis.py
index 80ab6455aba8d657c52ddd0b71c74ad96b0ea3ed..8c7b98374da916646620802157a2791c45743c81 100644
--- a/appengine/findit/model/build_analysis.py
+++ b/appengine/findit/model/build_analysis.py
@@ -45,3 +45,6 @@ class BuildAnalysis(BaseBuildModel):
default=BuildAnalysisStatus.PENDING, indexed=False)
start_time = ndb.DateTimeProperty(indexed=False)
updated_time = ndb.DateTimeProperty(indexed=False)
+
+ # Analysis result.
+ result = ndb.JsonProperty(indexed=False, compressed=True)

Powered by Google App Engine
This is Rietveld 408576698