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

Unified Diff: appengine/findit/main.py

Issue 2425453002: [Findit] Process analysis requests of Waterfall failures concurrently. (Closed)
Patch Set: fix nit. Created 4 years, 2 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/handlers/trigger_analyses.py ('k') | appengine/findit/queue.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/main.py
diff --git a/appengine/findit/main.py b/appengine/findit/main.py
index 4e75dd64f13cf815475293de2e87cdf98c924482..6dda90c32d633961248c697fbc3686ec078b1130 100644
--- a/appengine/findit/main.py
+++ b/appengine/findit/main.py
@@ -19,7 +19,7 @@ from handlers import monitor_alerts
from handlers import swarming_task
from handlers import triage_analysis
from handlers import triage_suspected_cl
-from handlers import trigger_analyses
+from handlers import process_failure_analysis_requests
chanli 2016/10/15 00:39:47 Nit: import order
stgao 2016/10/15 00:41:11 Done.
from handlers import try_job
from handlers import try_job_dashboard
from handlers import try_job_result
@@ -89,7 +89,8 @@ waterfall_frontend_web_application = webapp2.WSGIApplication(
# "waterfall-backend" module.
waterfall_backend_web_pages_handler_mappings = [
- ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses),
+ ('/waterfall/process-failure-analysis-requests',
+ process_failure_analysis_requests.ProcessFailureAnalysisRequests),
]
waterfall_backend_web_application = webapp2.WSGIApplication(
waterfall_backend_web_pages_handler_mappings, debug=False)
« no previous file with comments | « appengine/findit/handlers/trigger_analyses.py ('k') | appengine/findit/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698