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

Unified Diff: appengine/findit/main.py

Issue 2435983003: [Findit] Asynchronously process flake reports from chromium-try-flakes. (Closed)
Patch Set: Rebase to resolve conflict 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/test/process_flake_analysis_request_test.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 c29d0f1da637be48dbd8f62b62569e9af1803779..82cb7b0b2588dc067d6b8db8eafceeaed67e2818 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
@@ -95,6 +96,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)
« no previous file with comments | « appengine/findit/handlers/test/process_flake_analysis_request_test.py ('k') | appengine/findit/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698