set namespace rather than key (#1331)

This commit is contained in:
Asim Aslam
2020-03-11 22:31:24 +00:00
committed by GitHub
parent 7b385bf163
commit f55493993c
5 changed files with 94 additions and 83 deletions

View File

@@ -18,7 +18,7 @@ message ChangeSet {
}
message Change {
string key = 1;
string namespace = 1;
string path = 2;
ChangeSet changeSet = 3;
}
@@ -48,7 +48,7 @@ message ListResponse {
}
message ReadRequest {
string key = 1;
string namespace = 1;
string path = 2;
}
@@ -57,11 +57,11 @@ message ReadResponse {
}
message WatchRequest {
string key = 1;
string namespace = 1;
string path = 2;
}
message WatchResponse {
string key = 1;
string namespace = 1;
ChangeSet changeSet = 2;
}