From 7239589e028254b808ce0392e4ad4b80ad9e1878 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Thu, 6 Oct 2022 20:03:47 +0800 Subject: [PATCH] rpc.proto: added a new field hash_revision into HashKVResponse Signed-off-by: Benjamin Wang --- api/etcdserverpb/rpc.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/etcdserverpb/rpc.proto b/api/etcdserverpb/rpc.proto index a9dc1889a331..9cdc0b37f6e4 100644 --- a/api/etcdserverpb/rpc.proto +++ b/api/etcdserverpb/rpc.proto @@ -695,6 +695,8 @@ message HashKVResponse { uint32 hash = 2; // compact_revision is the compacted revision of key-value store when hash begins. int64 compact_revision = 3; + // hash_revision is the revision up to which the hash is calculated. + int64 hash_revision = 4 [(versionpb.etcd_version_field)="3.6"]; } message HashResponse {