Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: dm/api/distributor/swarming/v1/config.proto

Issue 2267143002: Add additional validation to swarming v1 distributor. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@dump_all_stacks
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 syntax = "proto3"; 5 syntax = "proto3";
6 6
7 import "google/protobuf/duration.proto"; 7 import "google/protobuf/duration.proto";
8 8
9 package swarmingV1; 9 package swarmingV1;
10 10
11 message Config { 11 message Config {
12 message Swarming { 12 message Swarming {
13 string host = 1; 13 string url = 1;
14 } 14 }
15 Swarming swarming = 1; 15 Swarming swarming = 1;
16 16
17 message Isolate { 17 message Isolate {
18 // The host of the isolate service, e.g. isolateserver.appspot.com. 18 // The host of the isolate service, e.g. isolateserver.appspot.com.
19 string host = 1; 19 string url = 1;
20 20
21 // The default assumed expiration period for execution results. 21 // The default assumed expiration period for execution results.
22 google.protobuf.Duration expiration = 2; 22 google.protobuf.Duration expiration = 2;
23 } 23 }
24 Isolate isolate = 2; 24 Isolate isolate = 2;
25 } 25 }
OLDNEW
« no previous file with comments | « no previous file | dm/api/distributor/swarming/v1/config.pb.go » ('j') | dm/api/distributor/swarming/v1/normalize.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698