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

Side by Side Diff: appengine/sheriff_o_matic/app.yaml

Issue 1260293009: make version of ts_mon compatible with appengine (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: clean up code Created 5 years, 4 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 application: sheriff-o-matic 1 application: sheriff-o-matic
2 version: 1 2 version: 1
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 6
7 handlers: 7 handlers:
8 # API Endpoints. 8 # API Endpoints.
9 - url: /alerts 9 - url: /alerts
10 script: alerts.app 10 script: alerts.app
(...skipping 16 matching lines...) Expand all
27 secure: always 27 secure: always
28 28
29 - url: /ts-alerts 29 - url: /ts-alerts
30 script: ts_alerts.app 30 script: ts_alerts.app
31 secure: always 31 secure: always
32 32
33 - url: /ts-alerts/.* 33 - url: /ts-alerts/.*
34 script: ts_alerts.app 34 script: ts_alerts.app
35 secure: always 35 secure: always
36 36
37 - url: /ts-internal-alerts
agable 2015/08/10 23:04:37 Why is this change in this CL?
jshu 2015/08/11 21:57:18 this endpoint was deleted earlier, should've alrea
agable 2015/08/12 22:18:08 Probably better to do it in a super simple separat
38 script: ts_alerts.app
39 secure: always
40
41 - url: /ts-alerts-history 37 - url: /ts-alerts-history
42 script: ts_alerts.app 38 script: ts_alerts.app
43 secure: always 39 secure: always
44 40
45 - url: /ts-alerts-history/.* 41 - url: /ts-alerts-history/.*
46 script: ts_alerts.app 42 script: ts_alerts.app
47 secure: always 43 secure: always
48 44
49 - url: /banner-msg 45 - url: /banner-msg
50 script: banner_msg.app 46 script: banner_msg.app
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 - components/static_third_party.yaml 115 - components/static_third_party.yaml
120 116
121 libraries: 117 libraries:
122 - name: webapp2 118 - name: webapp2
123 version: "latest" 119 version: "latest"
124 - name: pycrypto 120 - name: pycrypto
125 version: "latest" 121 version: "latest"
126 - name: jinja2 122 - name: jinja2
127 version: "latest" 123 version: "latest"
128 124
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698