Skip to content

Commit

Permalink
add endpoint type to WorkerMetadataResponse proto (#33953)
Browse files Browse the repository at this point in the history
* add endpoint type to WorkerMetadataResponse proto

* add default value to endpoint_type
  • Loading branch information
m-trieu authored Feb 19, 2025
1 parent 06454e5 commit 3a146a3
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,15 @@ message WorkerMetadataResponse {
// Used to set gRPC authority.
optional string external_endpoint = 5;

enum EndpointType {
UNKNOWN = 0;
CLOUDPATH = 1;
BORG = 2;
DIRECTPATH = 3;
}

optional EndpointType endpoint_type = 6 [default = CLOUDPATH];

reserved 4;
}

Expand Down

0 comments on commit 3a146a3

Please sign in to comment.