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

Side by Side Diff: appengine/findit/main.py

Issue 1940843003: [Findit] Use PubSub built-in authentication for push endpoint. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: fix nit. Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import endpoints 5 import endpoints
6 import webapp2 6 import webapp2
7 7
8 from common.pipeline_wrapper import pipeline_handlers 8 from common.pipeline_wrapper import pipeline_handlers
9 from common.pipeline_wrapper import pipeline_status_ui 9 from common.pipeline_wrapper import pipeline_status_ui
10 from findit_api import FindItApi 10 from findit_api import FindItApi
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 waterfall_backend_web_pages_handler_mappings = [ 79 waterfall_backend_web_pages_handler_mappings = [
80 ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses), 80 ('/waterfall/trigger-analyses', trigger_analyses.TriggerAnalyses),
81 ] 81 ]
82 waterfall_backend_web_application = webapp2.WSGIApplication( 82 waterfall_backend_web_application = webapp2.WSGIApplication(
83 waterfall_backend_web_pages_handler_mappings, debug=False) 83 waterfall_backend_web_pages_handler_mappings, debug=False)
84 84
85 85
86 # "crash-frontend" module. 86 # "crash-frontend" module.
87 crash_frontend_web_pages_handler_mappings = [ 87 crash_frontend_web_pages_handler_mappings = [
88 ('/crash/config', crash_config.CrashConfig), 88 ('/crash/config', crash_config.CrashConfig),
89 ('/crash/fracas', fracas_crash.FracasCrash), 89 ('/_ah/push-handlers/crash/fracas', fracas_crash.FracasCrash),
90 ] 90 ]
91 crash_frontend_web_application = webapp2.WSGIApplication( 91 crash_frontend_web_application = webapp2.WSGIApplication(
92 crash_frontend_web_pages_handler_mappings, debug=False) 92 crash_frontend_web_pages_handler_mappings, debug=False)
OLDNEW
« no previous file with comments | « appengine/findit/handlers/crash/test/fracas_crash_test.py ('k') | appengine/findit/model/crash/crash_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698