Skip to content

Commit

Permalink
refactor(euclid): update proto file for elimination routing
Browse files Browse the repository at this point in the history
  • Loading branch information
prajjwalkumar17 committed Jan 13, 2025
1 parent d850f17 commit ea07b45
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions proto/elimination_rate.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,17 @@ message EliminationResponse {

message LabelWithStatus {
string label = 1;
bool is_eliminated = 2;
string bucket_name = 3;
EliminationInformation elimination_information = 2;
}

message EliminationInformation {
BucketInformation entity = 1;
BucketInformation global = 2;
}

message BucketInformation {
bool is_eliminated = 1;
repeated string bucket_name = 2;
}

// API-2 types
Expand Down Expand Up @@ -64,4 +73,4 @@ message InvalidateBucketResponse {
BUCKET_INVALIDATION_FAILED = 1;
}
InvalidationStatus status = 1;
}
}

0 comments on commit ea07b45

Please sign in to comment.