Chromium Code Reviews| Index: appengine/findit/common/constants.py |
| diff --git a/appengine/findit/common/constants.py b/appengine/findit/common/constants.py |
| index b0ee80af3dcd7b70e56ec4198505dd94972d61b0..cf46665093fe71359cef4af707f5d98717896b3d 100644 |
| --- a/appengine/findit/common/constants.py |
| +++ b/appengine/findit/common/constants.py |
| @@ -9,7 +9,9 @@ import os |
| # Names of all modules. |
| WATERFALL_BACKEND = 'waterfall-backend' |
| -CRASH_BACKEND_FRACAS = 'crash-backend-fracas' |
| +CRASH_BACKEND = {'fracas': 'crash-backend-fracas', |
|
stgao
2016/09/20 23:00:10
style nit: usually we do below. Is this the recomm
Sharu Jiang
2016/09/21 18:06:02
Noop, done, I will do a pyformat cl after all of p
|
| + 'cracas': 'crash-backend-cracas', |
| + 'clusterfuzz': 'crash-backend-clusterfuzz'} |
| # Names of all queues. |
| @@ -17,7 +19,9 @@ 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. |