| OLD | NEW |
| 1 application: findit-for-me-dev | 1 application: findit-for-me-dev |
| 2 module: waterfall-backend | 2 module: waterfall-backend |
| 3 version: 1 | 3 version: 1 |
| 4 runtime: python27 | 4 runtime: python27 |
| 5 api_version: 1 | 5 api_version: 1 |
| 6 threadsafe: true | 6 threadsafe: true |
| 7 instance_class: B4 | 7 instance_class: B4 |
| 8 basic_scaling: | 8 basic_scaling: |
| 9 max_instances: 10 | 9 max_instances: 10 |
| 10 idle_timeout: 20m | 10 idle_timeout: 20m |
| 11 | 11 |
| 12 handlers: | 12 handlers: |
| 13 - url: /robots.txt | 13 - url: /robots.txt |
| 14 static_files: robots.txt | 14 static_files: robots.txt |
| 15 upload: robots.txt | 15 upload: robots.txt |
| 16 | 16 |
| 17 # Handler for the request process queue. | 17 # Handler for the analysis requests of failures on Waterfall. |
| 18 - url: /waterfall/process-failure-analysis-requests | 18 - url: /waterfall/process-failure-analysis-requests |
| 19 script: main.waterfall_backend_web_application | 19 script: main.waterfall_backend_web_application |
| 20 secure: always | 20 secure: always |
| 21 | 21 |
| 22 # Handler for the flake reports from chromium-try-flakes. |
| 23 - url: /waterfall/process-flake-analysis-request |
| 24 script: main.waterfall_backend_web_application |
| 25 secure: always |
| 26 |
| 22 # Pipeline handler. | 27 # Pipeline handler. |
| 23 - url: /_ah/pipeline(/.*)? | 28 - url: /_ah/pipeline(/.*)? |
| 24 script: main.pipeline_backend_application | 29 script: main.pipeline_backend_application |
| 25 secure: always | 30 secure: always |
| 26 | 31 |
| 27 skip_files: | 32 skip_files: |
| 28 - ^(.*/)?#.*#$ | 33 - ^(.*/)?#.*#$ |
| 29 - ^(.*/)?.*~$ | 34 - ^(.*/)?.*~$ |
| 30 - ^(.*/)?.*\.py[co]$ | 35 - ^(.*/)?.*\.py[co]$ |
| 31 - ^(.*/)?.*_test\.py$ | 36 - ^(.*/)?.*_test\.py$ |
| 32 - ^(.*/)?tests\.py$ | 37 - ^(.*/)?tests\.py$ |
| 33 - ^(.*/)?\..*$ | 38 - ^(.*/)?\..*$ |
| 34 - ^(.*/)?.*\.md$ | 39 - ^(.*/)?.*\.md$ |
| 35 - ^(.*/)?README$ | 40 - ^(.*/)?README$ |
| 36 - ^(.*/)?Makefile$ | 41 - ^(.*/)?Makefile$ |
| 37 - ^(.*/)?util_scripts/.*$ | 42 - ^(.*/)?util_scripts/.*$ |
| 38 | 43 |
| 39 libraries: | 44 libraries: |
| 40 - name: webapp2 | 45 - name: webapp2 |
| 41 version: latest | 46 version: latest |
| 42 - name: jinja2 | 47 - name: jinja2 |
| 43 version: latest | 48 version: latest |
| 44 - name: pycrypto | 49 - name: pycrypto |
| 45 version: latest | 50 version: latest |
| 46 - name: endpoints | 51 - name: endpoints |
| 47 version: 1.0 | 52 version: 1.0 |
| OLD | NEW |