@@ -14,17 +14,21 @@ import "pkg/proto/configuration/scheduler/scheduler.proto";
14
14
option go_package = "github.com/buildbarn/bb-remote-execution/pkg/proto/configuration/bb_scheduler" ;
15
15
16
16
message ApplicationConfiguration {
17
+ // Was 'admin_http_listen_address'. The listen address of the HTTP
18
+ // server can now be configured through 'admin_http_servers'.
19
+ reserved 2 ;
20
+
17
21
// Configuration for the HTTP servers that expose the web UI.
18
22
//
19
23
// TODO: This web UI no longer needs to be integrated into
20
24
// bb_scheduler, as the underlying information can be exposed over
21
25
// gRPC using the 'build_queue_state_grpc_servers' option.
22
26
repeated buildbarn.configuration.http.ServerConfiguration admin_http_servers =
23
- 2 ;
27
+ 19 ;
24
28
25
29
// The path under which the administrative web UI needs to be exposed.
26
30
// When left empty, the web UI will be exposed at "/".
27
- string admin_route_prefix = 21 ;
31
+ string admin_route_prefix = 22 ;
28
32
29
33
// gRPC servers to spawn to listen for requests from clients
30
34
// (bb_storage or Bazel).
@@ -87,7 +91,7 @@ message ApplicationConfiguration {
87
91
// size class queue to which drains are added, or from which drains
88
92
// are removed.
89
93
buildbarn.configuration.auth.AuthorizerConfiguration
90
- modify_drains_authorizer = 19 ;
94
+ modify_drains_authorizer = 20 ;
91
95
92
96
// Authorization requirements to be enforced for KillOperations
93
97
// RemoveDrain requests issued through the BuildQueueState gRPC
@@ -97,7 +101,7 @@ message ApplicationConfiguration {
97
101
// size class queue containing the operation. Not the instance name
98
102
// used by the operation itself.
99
103
buildbarn.configuration.auth.AuthorizerConfiguration
100
- kill_operations_authorizer = 20 ;
104
+ kill_operations_authorizer = 21 ;
101
105
102
106
// The policy for routing actions.
103
107
//
0 commit comments