Skip to content

Commit

Permalink
Reserve removed federation field properly
Browse files Browse the repository at this point in the history
  • Loading branch information
sameh-farouk committed Sep 5, 2023
1 parent 130873d commit 21c59c7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions proto/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ syntax = "proto3";
// A Request annotate this message as a request message
// with proper command
message Request {
reserved 2, 11;
reserved 2;
string command = 1;
}

// A Response annotate this message as a response message
message Response { reserved 1, 2, 11; }
message Response { reserved 1, 2; }

// A Error annotiate this message as an error message
message Error {
Expand All @@ -35,6 +35,7 @@ message Ping {}
message Pong {}

message Envelope {
reserved 11;
// uid is auto generated by rmb.
string uid = 1;
// client specific tags
Expand Down

0 comments on commit 21c59c7

Please sign in to comment.