| 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
|
|
|