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

Unified Diff: appengine/findit/main.py

Issue 1852383002: [Findit] Integrate with Fracas through Pub/Sub. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 8 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 e89d8048211a92a18f59798abc390e4a5d76b490..b0e17814b26d2d3033002f9cabf04d604193e0ca 100644
--- a/appengine/findit/main.py
+++ b/appengine/findit/main.py
@@ -20,6 +20,8 @@ from handlers import try_job
from handlers import try_job_result
from handlers import verify_analysis
from handlers import version
+from handlers.crash import crash_config
+from handlers.crash import fracas_crash
from pipeline_wrapper import pipeline_status_ui
@@ -74,3 +76,11 @@ waterfall_backend_web_pages_handler_mappings = [
]
waterfall_backend_web_application = webapp2.WSGIApplication(
waterfall_backend_web_pages_handler_mappings, debug=False)
+
+# This is for the "crash-frontend" module.
+crash_frontend_web_pages_handler_mappings = [
+ ('/crash/config', crash_config.CrashConfig),
+ ('/crash/fracas', fracas_crash.FracasCrash),
+]
+crash_frontend_web_application = webapp2.WSGIApplication(
+ crash_frontend_web_pages_handler_mappings, debug=False)

Powered by Google App Engine
This is Rietveld 408576698