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

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..3e5c637bc236dd5e48b0d6df2b78f010879ef716 100644
--- a/appengine/findit/model/wf_suspected_cl.py
+++ b/appengine/findit/model/wf_suspected_cl.py
@@ -28,7 +28,7 @@ class WfSuspectedCL(ndb.Model):
is_culprit = ndb.BooleanProperty(indexed=True, default=None)
# From which approach do we get this suspected CL: HEURISTIC, TRY_JOB or BOTH.
- approach = ndb.IntegerProperty(indexed=True)
+ approach = ndb.IntegerProperty(indexed=True, default=None)
# Failure type: failure_type.COMPILE or failure_type.TEST.
failure_type = ndb.IntegerProperty(indexed=True)

Powered by Google App Engine
This is Rietveld 408576698