Chromium Code Reviews| Index: appengine/swarming/proto/config.proto |
| diff --git a/appengine/swarming/proto/config.proto b/appengine/swarming/proto/config.proto |
| index f14cd2b2e44e3f5bb8b4cef262cb0a448f75d321..85119b76da23ed195767f8cda795c1b877dc4771 100644 |
| --- a/appengine/swarming/proto/config.proto |
| +++ b/appengine/swarming/proto/config.proto |
| @@ -17,4 +17,18 @@ message SettingsCfg { |
| // Enable ts_mon based monitoring. |
| optional bool enable_ts_monitoring = 4; |
| + |
| + // Configuration for swarming-isolate integration. |
| + optional IsolateSettings isolate = 5; |
| +} |
| + |
| +// Configuration for swarming-isolate integration. |
| +message IsolateSettings { |
| + // Default isolate server host to use if it is not specified in a task, |
| + // 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.
|
| + 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.
|
| + |
| + // Default namespace to use if it is not specified in a task, |
| + // e.g. "default-gzip" |
| + optional string default_namespace = 2; |
| } |