forked from TrueCloudLab/frostfs-api
Add split_info field in object.GetRangeResponse body
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
7995020a9d
commit
7f26542813
1 changed files with 8 additions and 2 deletions
|
@ -436,8 +436,14 @@ message GetRangeResponse {
|
||||||
// initial preamble message. The requested byte range is sent as a series
|
// initial preamble message. The requested byte range is sent as a series
|
||||||
// chunks.
|
// chunks.
|
||||||
message Body {
|
message Body {
|
||||||
// Chunked object payload's range
|
// Requested object range or meta information about split object.
|
||||||
bytes chunk = 1;
|
oneof range_part{
|
||||||
|
// Chunked object payload's range.
|
||||||
|
bytes chunk = 1;
|
||||||
|
|
||||||
|
// Meta information of split hierarchy.
|
||||||
|
SplitInfo split_info = 2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Body of get range object response message.
|
// Body of get range object response message.
|
||||||
|
|
Loading…
Reference in a new issue