| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 """Includes all the constants of module names, queue names, url paths, etc.""" |
| 6 |
| 7 # Names of all modules. |
| 8 WATERFALL_BACKEND = 'waterfall-backend' |
| 9 |
| 10 |
| 11 # Names of all queues. |
| 12 DEFAULT_QUEUE = 'default' |
| 13 WATERFALL_ANALYSIS_QUEUE = 'waterfall-analysis-queue' |
| 14 WATERFALL_TRY_JOB_QUEUE = 'waterfall-try-job-queue' |
| 15 WATERFALL_SERIAL_QUEUE = 'waterfall-serial-queue' |
| 16 |
| 17 |
| 18 # Url paths. |
| 19 WATERFALL_TRIGGER_ANALYSIS_URL = '/waterfall/trigger-analyses' |
| 20 WATERFALL_ALERTS_URL = 'https://sheriff-o-matic.appspot.com/alerts' |
| OLD | NEW |