Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed by the Apache v2.0 license that can be | 2 // Use of this source code is governed by the Apache v2.0 license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 // Schema for settings.cfg service config file in luci-config. | 7 // Schema for settings.cfg service config file in luci-config. |
| 8 message SettingsCfg { | 8 message SettingsCfg { |
| 9 // id to inject into pages if applicable. | 9 // id to inject into pages if applicable. |
| 10 optional string google_analytics = 1; | 10 optional string google_analytics = 1; |
| 11 | 11 |
| 12 // The number of seconds an old task can be deduped from. | 12 // The number of seconds an old task can be deduped from. |
| 13 optional int32 reusable_task_age_secs = 2; | 13 optional int32 reusable_task_age_secs = 2; |
| 14 | 14 |
| 15 // The amount of time that has to pass before a machine is considered dead. | 15 // The amount of time that has to pass before a machine is considered dead. |
| 16 optional int32 bot_death_timeout_secs = 3; | 16 optional int32 bot_death_timeout_secs = 3; |
| 17 | 17 |
| 18 // Enable ts_mon based monitoring. | 18 // Enable ts_mon based monitoring. |
| 19 optional bool enable_ts_monitoring = 4; | 19 optional bool enable_ts_monitoring = 4; |
| 20 | |
| 21 // Configuration for swarming-isolate integration. | |
| 22 optional IsolateSettings isolate = 5; | |
| 20 } | 23 } |
| 24 | |
| 25 // Configuration for swarming-isolate integration. | |
| 26 message IsolateSettings { | |
| 27 // Default isolate server host to use if it is not specified in a task, | |
| 28 // e.g. "isolateserver.appspot.com" | |
|
M-A Ruel
2016/05/10 15:27:41
have it include the protocol
nodir
2016/05/10 18:49:49
Done.
| |
| 29 optional string default_server_host = 1; | |
|
M-A Ruel
2016/05/10 15:27:40
default_server
nodir
2016/05/10 18:49:49
Done.
| |
| 30 | |
| 31 // Default namespace to use if it is not specified in a task, | |
| 32 // e.g. "default-gzip" | |
| 33 optional string default_namespace = 2; | |
| 34 } | |
| OLD | NEW |