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

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

Issue 2230103002: [Findit] Pipeline change to save suspected cls to data store. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@0808-resubmit-suspected_cl_model
Patch Set: . Created 4 years, 4 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/wf_suspected_cl.py
diff --git a/appengine/findit/model/wf_suspected_cl.py b/appengine/findit/model/wf_suspected_cl.py
index 4c4caac1f1d715c584f5a98b7dec0722bcb02340..284fdccd9feccfacda608f21616c1f635efcd813 100644
--- a/appengine/findit/model/wf_suspected_cl.py
+++ b/appengine/findit/model/wf_suspected_cl.py
@@ -25,7 +25,7 @@ class WfSuspectedCL(ndb.Model):
builds = ndb.JsonProperty(indexed=False)
# Is the suspected CL the culprit or not.
- is_culprit = ndb.BooleanProperty(indexed=True, default=None)
+ is_culprit = ndb.BooleanProperty(indexed=True)
# From which approach do we get this suspected CL: HEURISTIC, TRY_JOB or BOTH.
approach = ndb.IntegerProperty(indexed=True)

Powered by Google App Engine
This is Rietveld 408576698