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

Side by Side Diff: appengine/findit/waterfall-frontend.yaml

Issue 2042043004: Added skeleton code for the Detection of regression range for flaky (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: [Findit] fixed previous comments Created 4 years, 6 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: findit-for-me-dev 1 application: findit-for-me-dev
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 module: waterfall-frontend 6 module: waterfall-frontend
7 instance_class: F1 7 instance_class: F1
8 automatic_scaling: 8 automatic_scaling:
9 min_idle_instances: 1 9 min_idle_instances: 1
10 max_concurrent_requests: 25 10 max_concurrent_requests: 25
11 11
12 handlers: 12 handlers:
13 # Static resources and home page. 13 # Static resources and home page.
14 - url: / 14 - url: /
15 static_files: templates/home.html 15 static_files: templates/home.html
16 upload: templates/home.html 16 upload: templates/home.html
17 17
18 - url: /robots.txt 18 - url: /robots.txt
19 static_files: static/robots.txt 19 static_files: static/robots.txt
20 upload: static/robots.txt 20 upload: static/robots.txt
21 21
22 - url: /common.css 22 - url: /common.css
23 static_files: static/common.css 23 static_files: static/common.css
24 upload: static/common.css 24 upload: static/common.css
25 25
26 - url: /waterfall/flake
27 static_files: templates/flake.html
28 upload: templates/flake.html
29
26 # Pipeline status UI handler. 30 # Pipeline status UI handler.
27 - url: /_ah/pipeline(/.*)? 31 - url: /_ah/pipeline(/.*)?
28 script: main.pipeline_status_application 32 script: main.pipeline_status_application
29 secure: always 33 secure: always
30 34
31 # Endpoints handler. 35 # Endpoints handler.
32 - url: /_ah/spi/.* 36 - url: /_ah/spi/.*
33 script: main.api_application 37 script: main.api_application
34 secure: always 38 secure: always
35 39
(...skipping 16 matching lines...) Expand all
52 56
53 libraries: 57 libraries:
54 - name: webapp2 58 - name: webapp2
55 version: latest 59 version: latest
56 - name: jinja2 60 - name: jinja2
57 version: latest 61 version: latest
58 - name: pycrypto 62 - name: pycrypto
59 version: latest 63 version: latest
60 - name: endpoints 64 - name: endpoints
61 version: 1.0 65 version: 1.0
OLDNEW
« appengine/findit/handlers/flake/check_flake.py ('K') | « appengine/findit/templates/flake.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698