Skip to content

Commit

Permalink
chore: Proto field numbers (#1082)
Browse files Browse the repository at this point in the history
* mistake from previous additions, but never released
  • Loading branch information
patriknw authored Dec 5, 2023
1 parent 3a5c3b3 commit 9cddb36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ message ConsumerEventInit {

message ConsumerEventStart {
repeated FilterCriteria filter = 1;
ReplicaInfo replica_info = 6;
ReplicaInfo replica_info = 2;
}

message KeepAlive { }
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ message PersistenceIdSeqNr {
// Events originating from the producer replica are always included.
message ReplicaInfo {
// The replica id of the consumer
string replica_id = 6;
string replica_id = 1;
// Other replicas that the consumer is connected to.
repeated string other_replica_ids = 7;
repeated string other_replica_ids = 2;
}


Expand Down

0 comments on commit 9cddb36

Please sign in to comment.