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

Unified Diff: appengine/findit/common/constants.py

Issue 2299883005: [Findit] Add findit_for_client to do analysis based on client_id (Closed)
Patch Set: Rebase. 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
« no previous file with comments | « appengine/findit/common/appengine_util.py ('k') | appengine/findit/crash/crash_pipeline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/common/constants.py
diff --git a/appengine/findit/common/constants.py b/appengine/findit/common/constants.py
index b0ee80af3dcd7b70e56ec4198505dd94972d61b0..b8c01bb542320c7d0f76df5e12895a5a0472ed80 100644
--- a/appengine/findit/common/constants.py
+++ b/appengine/findit/common/constants.py
@@ -9,7 +9,11 @@ import os
# Names of all modules.
WATERFALL_BACKEND = 'waterfall-backend'
-CRASH_BACKEND_FRACAS = 'crash-backend-fracas'
+CRASH_BACKEND = {
+ 'fracas': 'crash-backend-fracas',
+ 'cracas': 'crash-backend-cracas',
+ 'clusterfuzz': 'crash-backend-clusterfuzz'
+}
# Names of all queues.
@@ -17,7 +21,11 @@ DEFAULT_QUEUE = 'default'
WATERFALL_ANALYSIS_QUEUE = 'waterfall-analysis-queue'
WATERFALL_TRY_JOB_QUEUE = 'waterfall-try-job-queue'
WATERFALL_SERIAL_QUEUE = 'waterfall-serial-queue'
-CRASH_ANALYSIS_FRACAS_QUEUE = 'crash-analysis-fracas-queue'
+CRASH_ANALYSIS_QUEUE = {
+ 'fracas': 'crash-analysis-fracas-queue',
+ 'cracas': 'crash-analysis-cracas-queue',
+ 'clusterfuzz': 'crash-analysis-clusterfuzz-queue'
+}
# Waterfall-related.
« no previous file with comments | « appengine/findit/common/appengine_util.py ('k') | appengine/findit/crash/crash_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698