Browse Source

etcdserverpb: add more field into rangeResponse

Xiang Li 10 years ago
parent
commit
98ceb3cdbd
1 changed files with 2 additions and 0 deletions
  1. 2 0
      etcdserver/etcdserverpb/rpc.proto

+ 2 - 0
etcdserver/etcdserverpb/rpc.proto

@@ -59,6 +59,8 @@ message RangeResponse {
   ResponseHeader header = 1;
   repeated storagepb.KeyValue kvs = 2;
   bytes consistent_token = 3;
+  // more indicates if there are more keys to return in the requested range.
+  bool more = 4;
 }
 
 message PutRequest {