Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
KEP-485 Finalize protobuf response changes and update daemon, crud sc…
Browse files Browse the repository at this point in the history
…ript etc. to support it

* rebased and fixed proto
  • Loading branch information
ebruck committed Aug 27, 2018
1 parent b06cf20 commit 68ed2d6
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions proto/database.proto
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,11 @@ message database_subscription_update

message database_redirect_response
{
database_header header = 1;

string leader_id = 2;
string leader_name = 3;
string leader_host = 4;
uint32 leader_port = 5;
uint32 leader_http_port = 6;
string leader_id = 1;
string leader_name = 2;
string leader_host = 3;
uint32 leader_port = 4;
uint32 leader_http_port = 5;
}

message database_has_response
Expand All @@ -113,8 +111,8 @@ message database_keys_response

message database_read_response
{
string key = 3;
bytes value = 4;
string key = 1;
bytes value = 2;
}

message database_size_response
Expand Down

0 comments on commit 68ed2d6

Please sign in to comment.