| OLD | NEW |
| 1 application: findit-for-waterfall | 1 application: findit-for-waterfall |
| 2 module: build-failure-analysis | 2 module: build-failure-analysis |
| 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: B2 | 7 instance_class: B2 |
| 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 # Pipeline handler. | 17 # Pipeline handler. |
| 18 - url: /_ah/pipeline(/.*)? | 18 - url: /_ah/pipeline(/.*)? |
| 19 script: "pipeline_utils.appengine_third_party_pipeline_src_pipeline.\ | 19 script: "pipeline_utils.appengine_third_party_pipeline_python_src_pipeline.\ |
| 20 handlers._APP" | 20 handlers._APP" |
| 21 secure: always | 21 secure: always |
| 22 | 22 |
| 23 skip_files: | 23 skip_files: |
| 24 - ^(.*/)?#.*#$ | 24 - ^(.*/)?#.*#$ |
| 25 - ^(.*/)?.*~$ | 25 - ^(.*/)?.*~$ |
| 26 - ^(.*/)?.*\.py[co]$ | 26 - ^(.*/)?.*\.py[co]$ |
| 27 - ^(.*/)?.*_test\.py$ | 27 - ^(.*/)?.*_test\.py$ |
| 28 - ^(.*/)?tests\.py$ | 28 - ^(.*/)?tests\.py$ |
| 29 - ^(.*/)?\..*$ | 29 - ^(.*/)?\..*$ |
| 30 - ^(.*/)?.*\.md$ | 30 - ^(.*/)?.*\.md$ |
| 31 - ^(.*/)?README$ | 31 - ^(.*/)?README$ |
| 32 - ^(.*/)?Makefile$ | 32 - ^(.*/)?Makefile$ |
| 33 - ^(.*/)?util_scripts/.*$ | 33 - ^(.*/)?util_scripts/.*$ |
| 34 | 34 |
| 35 libraries: | 35 libraries: |
| 36 - name: webapp2 | 36 - name: webapp2 |
| 37 version: latest | 37 version: latest |
| OLD | NEW |