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

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

Issue 1866883002: [Findit] A huge refactoring and some bug fixing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix nit. 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
OLDNEW
1 application: findit-for-waterfall 1 application: findit-for-me-dev
2 module: build-failure-analysis
3 version: 1 2 version: 1
4 runtime: python27 3 runtime: python27
5 api_version: 1 4 api_version: 1
6 threadsafe: true 5 threadsafe: true
7 instance_class: B2 6 module: waterfall-frontend
8 basic_scaling: 7 instance_class: F1
9 max_instances: 10 8 automatic_scaling:
10 idle_timeout: 20m 9 min_idle_instances: 1
10 max_concurrent_requests: 25
11 11
12 handlers: 12 handlers:
13 - url: /robots.txt 13 - url: /.*
14 static_files: robots.txt 14 script: main.waterfall_frontend_web_application
15 upload: robots.txt
16
17 # Handler for the request process queue.
18 - url: /trigger-analyses
19 script: main.backend_application
20 secure: always
21
22 # Pipeline handler.
23 - url: /_ah/pipeline(/.*)?
24 script: "pipeline_wrapper.pipeline_handlers._APP"
25 secure: always 15 secure: always
26 16
27 skip_files: 17 skip_files:
28 - ^(.*/)?#.*#$ 18 - ^(.*/)?#.*#$
29 - ^(.*/)?.*~$ 19 - ^(.*/)?.*~$
30 - ^(.*/)?.*\.py[co]$ 20 - ^(.*/)?.*\.py[co]$
31 - ^(.*/)?.*_test\.py$ 21 - ^(.*/)?.*_test\.py$
32 - ^(.*/)?tests\.py$ 22 - ^(.*/)?tests\.py$
33 - ^(.*/)?\..*$ 23 - ^(.*/)?\..*$
34 - ^(.*/)?.*\.md$ 24 - ^(.*/)?.*\.md$
35 - ^(.*/)?README$ 25 - ^(.*/)?README$
36 - ^(.*/)?Makefile$ 26 - ^(.*/)?Makefile$
37 - ^(.*/)?util_scripts/.*$ 27 - ^(.*/)?util_scripts/.*$
38 28
39 libraries: 29 libraries:
40 - name: webapp2 30 - name: webapp2
41 version: latest 31 version: latest
42 - name: jinja2 32 - name: jinja2
43 version: latest 33 version: latest
44 - name: pycrypto 34 - name: pycrypto
45 version: latest 35 version: latest
46 - name: endpoints 36 - name: endpoints
47 version: 1.0 37 version: 1.0
OLDNEW
« no previous file with comments | « appengine/findit/waterfall-backend.yaml ('k') | appengine/findit/waterfall/analyze_build_failure_pipeline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698