etcdserverpb: add missing deleterange annotation

This commit is contained in:
Xiang Li 2016-07-23 15:59:53 -07:00 committed by Gyu-Ho Lee
parent 6499d01c9b
commit 4218193dd7

View File

@ -33,7 +33,12 @@ service KV {
// DeleteRange deletes the given range from the key-value store.
// A delete request increments the revision of the key-value store
// and generates a delete event in the event history for every deleted key.
rpc DeleteRange(DeleteRangeRequest) returns (DeleteRangeResponse) {}
rpc DeleteRange(DeleteRangeRequest) returns (DeleteRangeResponse) {
option (google.api.http) = {
post: "/v3alpha/kv/deleterange"
body: "*"
};
}
// Txn processes multiple requests in a single transaction.
// A txn request increments the revision of the key-value store