Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed Nov 15, 2023
1 parent 06924ae commit e254844
Show file tree
Hide file tree
Showing 9 changed files with 1,343 additions and 582 deletions.
935 changes: 504 additions & 431 deletions common/pb/ctrl_pb/ctrl.pb.go

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions common/pb/ctrl_pb/ctrl.proto
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ enum ContentType {
RemoveTerminatorsRequestType = 1038;
QuiesceRouterRequestType = 1039;
DequiesceRouterRequestType = 1040;
ValidateTerminatorsV2RequestType = 1041;

PeerStateChangeRequestType = 1050;

Expand Down Expand Up @@ -108,6 +109,10 @@ message ValidateTerminatorsRequest {
repeated Terminator terminators = 1;
}

message ValidateTerminatorsV2Request {
repeated Terminator terminators = 1;
}

message UpdateTerminatorRequest {
string terminatorId = 1;
bool updatePrecedence = 2;
Expand Down
4 changes: 4 additions & 0 deletions common/pb/mgmt_pb/impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ func (request *InspectResponse) GetContentType() int32 {
func (request *RaftMemberListResponse) GetContentType() int32 {
return int32(ContentType_RaftListMembersResponseType)
}

func (request *TerminatorDetail) GetContentType() int32 {
return int32(ContentType_ValidateTerminatorResultType)
}
Loading

0 comments on commit e254844

Please sign in to comment.