| Index: appengine/findit/model/wf_culprit.py
|
| diff --git a/appengine/findit/model/wf_culprit.py b/appengine/findit/model/wf_culprit.py
|
| index f40882b5a3bd96388897eeafb5bc0db306017cee..182094f27a3961e38f797242e4051e20c6164531 100644
|
| --- a/appengine/findit/model/wf_culprit.py
|
| +++ b/appengine/findit/model/wf_culprit.py
|
| @@ -22,7 +22,8 @@ class WfCulprit(ndb.Model):
|
| # When the code-review of this culprit was notified.
|
| cr_notification_time = ndb.DateTimeProperty(indexed=True)
|
|
|
| - # The status of code-review notification: None, RUNNING, COMPLETED, ERROR.
|
| + # The status of code-review notification:
|
| + # None, RUNNING, COMPLETED, ERROR, SKIPPED.
|
| cr_notification_status = ndb.IntegerProperty(indexed=True)
|
|
|
| # The list of builds in which the culprit caused some breakage.
|
| @@ -34,7 +35,8 @@ class WfCulprit(ndb.Model):
|
|
|
| @property
|
| def cr_notification_processed(self):
|
| - return self.cr_notification_status in (status.COMPLETED, status.RUNNING)
|
| + return self.cr_notification_status in (
|
| + status.COMPLETED, status.RUNNING, status.SKIPPED)
|
|
|
| @property
|
| def cr_notified(self):
|
|
|