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

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

Issue 2320153003: [Findit] Datamodel change for triaging at CL level. (Closed)
Patch Set: change index.yaml 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..97954be4541612f80efb9c3f2301bbb4f110cfce 100644
--- a/appengine/findit/model/analysis_approach_type.py
+++ b/appengine/findit/model/analysis_approach_type.py
@@ -4,12 +4,10 @@
# Represents the type of approach.
-HEURISTIC = 0x00
-TRY_JOB = 0x01
-BOTH = 0x08
+HEURISTIC = 0x01
+TRY_JOB = 0x02
STATUS_TO_DESCRIPTION = {
HEURISTIC: 'Heuristic',
- TRY_JOB: 'Try Job',
- BOTH: 'Both'
+ TRY_JOB: 'Try Job'
}

Powered by Google App Engine
This is Rietveld 408576698