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

Side by Side Diff: appengine/findit/app.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: Skeleton Code Regression Range 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: default 6 module: default
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 builtins: 12 builtins:
13 - remote_api: on 13 - remote_api: on
14 14
15 handlers: 15 handlers:
16 # Static resources and home page. 16 # Static resources and home page.
17 - url: / 17 - url: /
18 static_files: templates/home.html 18 static_files: templates/home.html
19 upload: templates/home.html 19 upload: templates/home.html
20 20
21 - url: /robots.txt 21 - url: /robots.txt
22 static_files: static/robots.txt 22 static_files: static/robots.txt
23 upload: static/robots.txt 23 upload: static/robots.txt
24 24
25 - url: /common.css 25 - url: /common.css
26 static_files: static/common.css 26 static_files: static/common.css
27 upload: static/common.css 27 upload: static/common.css
28 28
29 - url: /flake
stgao 2016/06/13 22:29:43 How about /waterfall/flake? And move it to waterfa
caiw 2016/06/13 22:45:34 Done.
30 static_files: templates/flake.html
31 upload: templates/flake.html
32
29 # Pipeline status UI handler. 33 # Pipeline status UI handler.
30 - url: /_ah/pipeline(/.*)? 34 - url: /_ah/pipeline(/.*)?
31 script: main.pipeline_status_application 35 script: main.pipeline_status_application
32 secure: always 36 secure: always
33 37
34 # Endpoints handler. 38 # Endpoints handler.
35 - url: /_ah/spi/.* 39 - url: /_ah/spi/.*
36 script: main.api_application 40 script: main.api_application
37 secure: always 41 secure: always
38 42
(...skipping 15 matching lines...) Expand all
54 58
55 libraries: 59 libraries:
56 - name: webapp2 60 - name: webapp2
57 version: latest 61 version: latest
58 - name: jinja2 62 - name: jinja2
59 version: latest 63 version: latest
60 - name: pycrypto 64 - name: pycrypto
61 version: latest 65 version: latest
62 - name: endpoints 66 - name: endpoints
63 version: 1.0 67 version: 1.0
OLDNEW
« no previous file with comments | « no previous file | appengine/findit/handlers/flake/__init__.py » ('j') | appengine/findit/handlers/flake/check_flake.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698