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

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

Issue 2435013005: [Findit] Updating flakiness dashboard to be able to triage results (Closed)
Patch Set: Fixing nit Created 4 years, 2 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 | « appengine/findit/index.yaml ('k') | appengine/findit/model/flake/master_flake_analysis.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/model/base_triaged_model.py
diff --git a/appengine/findit/model/base_triaged_model.py b/appengine/findit/model/base_triaged_model.py
index ca008eada110ba8e57cda01315c88faccbc308d8..7afb2e2cc63b9ce9bdd0c82a90a30763bd01ba6f 100644
--- a/appengine/findit/model/base_triaged_model.py
+++ b/appengine/findit/model/base_triaged_model.py
@@ -16,8 +16,9 @@ class TriageResult(ndb.Model):
# The time this triage result was determined.
triaged_time = ndb.DateTimeProperty(indexed=False, auto_now=True)
- # The result of the analysis as correct or not. If not triaged, the value
- # should be None. Other traige result codes are up to the child class to set.
+ # The result of the analysis as correct or not. If the analysis is not yet
+ # completed, then the value should be None. Other traige result codes are up
+ # to the child class to set.
triage_result = ndb.IntegerProperty(default=None, indexed=True)
# The version of findit that generated this result. Should primarily be
@@ -34,7 +35,7 @@ class TriageResult(ndb.Model):
class TriagedModel(ndb.Model):
- """The parent class for models that can have traige results."""
+ """The parent class for models that can have triage results."""
def UpdateTriageResult(self, triage_result, suspect_info, user_name,
version_number=None):
« no previous file with comments | « appengine/findit/index.yaml ('k') | appengine/findit/model/flake/master_flake_analysis.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698