From 0a5f3d5a0158dc3155b6d6828a312a4416a70150 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Tue, 4 Aug 2020 17:40:24 +0300 Subject: [PATCH] [#26] object: Remove unused Redirect field Redirect field was introduced for the future, however, at the moment it is not used anywhere. This commit removes field Redirect from ExtendedHeader message. It can be added back later without losing API backward compatibility. Signed-off-by: Leonard Lyubich --- object/types.proto | 2 -- proto-docs/object.md | 1 - 2 files changed, 3 deletions(-) diff --git a/object/types.proto b/object/types.proto index 2437ca9..be4afa4 100644 --- a/object/types.proto +++ b/object/types.proto @@ -17,8 +17,6 @@ message Attribute { } message ExtendedHeader { - // Redirect not used yet - refs.Address Redirect = 2; // Attribute is a set of K-V object attributes Attribute Attribute = 3; // Split carries the position of the object in the split hierarchy. diff --git a/proto-docs/object.md b/proto-docs/object.md index 9c77114..3ffd4b3 100644 --- a/proto-docs/object.md +++ b/proto-docs/object.md @@ -380,7 +380,6 @@ Attribute groups the parameters of the object attributes. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| Redirect | [refs.Address](#refs.Address) | | Redirect not used yet | | Attribute | [Attribute](#object.Attribute) | | Attribute is a set of K-V object attributes | | SplitHeader | [SplitHeader](#object.SplitHeader) | | Split carries the position of the object in the split hierarchy. | | Tombstone | [Tombstone](#object.Tombstone) | | Tombstone header that set up in deleted objects |