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

Side by Side Diff: dashboard/app.yaml

Issue 1831403003: Remove get_logs from app.yaml. (Closed) Base URL: https://github.com/catapult-project/catapult.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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Python Application Configuration 1 # Python Application Configuration
2 # https://developers.google.com/appengine/docs/python/config/appconfig 2 # https://developers.google.com/appengine/docs/python/config/appconfig
3 3
4 runtime: python27 4 runtime: python27
5 api_version: 1 5 api_version: 1
6 threadsafe: false 6 threadsafe: false
7 7
8 libraries: 8 libraries:
9 - name: jinja2 9 - name: jinja2
10 version: "2.6" 10 version: "2.6"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 - url: /change_internal_only 97 - url: /change_internal_only
98 script: dashboard.dispatcher.APP 98 script: dashboard.dispatcher.APP
99 login: admin 99 login: admin
100 secure: always 100 secure: always
101 101
102 - url: /delete_expired_entities 102 - url: /delete_expired_entities
103 script: dashboard.dispatcher.APP 103 script: dashboard.dispatcher.APP
104 login: admin 104 login: admin
105 secure: always 105 secure: always
106 106
107 - url: /get_logs
108 script: dashboard.dispatcher.APP
109 login: admin
110 secure: always
111
112 - url: /edit_anomaly_configs 107 - url: /edit_anomaly_configs
113 script: dashboard.dispatcher.APP 108 script: dashboard.dispatcher.APP
114 login: admin 109 login: admin
115 secure: always 110 secure: always
116 111
117 - url: /edit_bug_labels 112 - url: /edit_bug_labels
118 script: dashboard.dispatcher.APP 113 script: dashboard.dispatcher.APP
119 login: admin 114 login: admin
120 secure: always 115 secure: always
121 116
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 secure: always 190 secure: always
196 191
197 - url: /update_test_suites 192 - url: /update_test_suites
198 script: dashboard.dispatcher.APP 193 script: dashboard.dispatcher.APP
199 login: admin 194 login: admin
200 secure: always 195 secure: always
201 196
202 - url: /.* 197 - url: /.*
203 script: dashboard.dispatcher.APP 198 script: dashboard.dispatcher.APP
204 secure: always 199 secure: always
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698