Skip to content

Commit

Permalink
feat(isolate_proto): add missing app info fields (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Feb 13, 2025
1 parent 4dfba58 commit b217c98
Show file tree
Hide file tree
Showing 3 changed files with 249 additions and 187 deletions.
7 changes: 7 additions & 0 deletions projects/isolate_proto/src/isolate_proto/controller.proto
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ message UpdateApplicationRequest {
optional int32 min_concurrency = 5;
repeated string valid_regions = 6;
repeated string machine_types = 7;
optional int32 request_timeout = 8;
optional int32 startup_timeout = 9;
}

message UpdateApplicationResult {
Expand All @@ -229,6 +231,8 @@ message ApplicationInfo {
int32 active_runners = 6;
int32 min_concurrency = 7;
repeated string machine_types = 8;
optional int32 request_timeout = 9;
optional int32 startup_timeout = 10;
}

message ListApplicationsResult {
Expand Down Expand Up @@ -278,6 +282,9 @@ message AliasInfo {
int32 keep_alive = 6;
int32 active_runners = 7;
int32 min_concurrency = 8;
repeated string machine_types = 9;
optional int32 request_timeout = 10;
optional int32 startup_timeout = 11;
}

message SetSecretRequest {
Expand Down
Loading

0 comments on commit b217c98

Please sign in to comment.