Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 application: swarmingserver | 1 application: swarmingserver |
| 2 module: default | 2 module: default |
| 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 | 7 |
| 8 instance_class: F4 | 8 instance_class: F4 |
| 9 automatic_scaling: | 9 automatic_scaling: |
| 10 min_idle_instances: 2 | 10 min_idle_instances: 2 |
| 11 min_pending_latency: 50ms | 11 min_pending_latency: 50ms |
| 12 max_pending_latency: 250ms | 12 max_pending_latency: 250ms |
| 13 | 13 |
| 14 default_expiration: "2d" | |
|
M-A Ruel
2016/11/22 17:27:52
That's too long, when we push an updated CSS, this
| |
| 15 | |
| 14 handlers: | 16 handlers: |
| 15 - url: /_ah/spi/.* | 17 - url: /_ah/spi/.* |
| 16 script: main.endpoints_app | 18 script: main.endpoints_app |
| 17 secure: always | 19 secure: always |
| 18 | 20 |
| 19 - url: /internal/mapreduce(/.*)? | 21 - url: /internal/mapreduce(/.*)? |
| 20 script: main.mapreduce_app | 22 script: main.mapreduce_app |
| 21 secure: always | 23 secure: always |
| 22 login: admin | 24 login: admin |
| 23 | 25 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 123 - .+\.zip$ | 125 - .+\.zip$ |
| 124 - ^(.*/)?#.*# | 126 - ^(.*/)?#.*# |
| 125 - .+~ | 127 - .+~ |
| 126 - .+\.py[co] | 128 - .+\.py[co] |
| 127 # Doc, readme and license. | 129 # Doc, readme and license. |
| 128 - ^doc/ | 130 - ^doc/ |
| 129 - ^[A-Z]+$ | 131 - ^[A-Z]+$ |
| 130 - ^[A-Z]+\.[a-z]+$ | 132 - ^[A-Z]+\.[a-z]+$ |
| 131 - ui/node_modules/ | 133 - ui/node_modules/ |
| 132 - ui/res/imp/bower_components/ | 134 - ui/res/imp/bower_components/ |
| OLD | NEW |