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

Unified Diff: appengine/findit/main.py

Issue 2435983003: [Findit] Asynchronously process flake reports from chromium-try-flakes. (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
Index: appengine/findit/main.py
diff --git a/appengine/findit/main.py b/appengine/findit/main.py
index cffda7b9675b98b87eca7569a1d439a4a9860ac4..33bb29b6a946e0d1a7e30a35f1eb0ba0ff60022f 100644
--- a/appengine/findit/main.py
+++ b/appengine/findit/main.py
@@ -17,6 +17,7 @@ from handlers import help_triage
from handlers import list_analyses
from handlers import monitor_alerts
from handlers import process_failure_analysis_requests
+from handlers import process_flake_analysis_request
from handlers import swarming_task
from handlers import triage_analysis
from handlers import triage_suspected_cl
@@ -91,6 +92,8 @@ waterfall_frontend_web_application = webapp2.WSGIApplication(
waterfall_backend_web_pages_handler_mappings = [
('/waterfall/process-failure-analysis-requests',
process_failure_analysis_requests.ProcessFailureAnalysisRequests),
+ ('/waterfall/process-flake-analysis-request',
+ process_flake_analysis_request.ProcessFlakeAnalysisRequest),
]
waterfall_backend_web_application = webapp2.WSGIApplication(
waterfall_backend_web_pages_handler_mappings, debug=False)

Powered by Google App Engine
This is Rietveld 408576698