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

Unified Diff: appengine/findit/model/wf_try_job_data.py

Issue 1926473002: [Findit] Adding new fields to try job metadata and updating as soon as possible (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Addressing comments 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
« no previous file with comments | « no previous file | appengine/findit/waterfall/monitor_try_job_pipeline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/model/wf_try_job_data.py
diff --git a/appengine/findit/model/wf_try_job_data.py b/appengine/findit/model/wf_try_job_data.py
index 2182651a453be704825eeefdce4885a5a1afebab..d3ba5100afcd3a954083de4e63f29a01c323ccec 100644
--- a/appengine/findit/model/wf_try_job_data.py
+++ b/appengine/findit/model/wf_try_job_data.py
@@ -35,6 +35,10 @@ class WfTryJobData(ndb.Model):
error_code = ndb.IntegerProperty(indexed=True)
# The last buildbucket build response received.
last_buildbucket_response = ndb.JsonProperty(indexed=False, compressed=True)
+ # Whether or not the try job had compile targets passed (compile only).
+ has_compile_targets = ndb.BooleanProperty(indexed=True)
+ # Whether or not the try job had heuristic results to guide it.
+ has_heuristic_results = ndb.BooleanProperty(indexed=True)
@staticmethod
def _CreateKey(build_id): # pragma: no cover
« no previous file with comments | « no previous file | appengine/findit/waterfall/monitor_try_job_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698