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

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

Issue 2320153003: [Findit] Datamodel change for triaging at CL level. (Closed)
Patch Set: . Created 4 years, 3 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/analysis_approach_type.py
diff --git a/appengine/findit/model/analysis_approach_type.py b/appengine/findit/model/analysis_approach_type.py
index cff3bd1bf633a737747ec35ce4a8897485b5101f..0634899b788069af52ec374aafc66c8cbf9bd587 100644
--- a/appengine/findit/model/analysis_approach_type.py
+++ b/appengine/findit/model/analysis_approach_type.py
@@ -4,9 +4,9 @@
# Represents the type of approach.
-HEURISTIC = 0x00
-TRY_JOB = 0x01
-BOTH = 0x08
+HEURISTIC = 0x01
stgao 2016/09/13 17:23:27 Do we save these values in datastore? If not, fine
chanli 2016/09/13 18:06:30 I just checked and they are not in datastore.
+TRY_JOB = 0x02
+BOTH = 0x03
STATUS_TO_DESCRIPTION = {
HEURISTIC: 'Heuristic',

Powered by Google App Engine
This is Rietveld 408576698