Merge pull request #48 from nspcc-dev/Get-range-response-struct

Get range response struct
This commit is contained in:
Evgeniy Kulikov 2020-02-05 14:45:12 +03:00 committed by GitHub
commit 3bcdbc9864
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -210,7 +210,7 @@ in distributed system.
| Field | Type | Label | Description | | Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- | | ----- | ---- | ----- | ----------- |
| Fragments | [bytes](#bytes) | repeated | Fragments of object's payload | | Fragment | [bytes](#bytes) | | Fragment of object's payload |
<a name="object.GetRequest"></a> <a name="object.GetRequest"></a>

Binary file not shown.

View file

@ -163,8 +163,8 @@ message GetRangeRequest {
} }
message GetRangeResponse { message GetRangeResponse {
// Fragments of object's payload // Fragment of object's payload
repeated bytes Fragments = 1; bytes Fragment = 1;
} }
message GetRangeHashRequest { message GetRangeHashRequest {