change GetRangeResponse type from 'repeated bytes' to 'bytes'

This commit is contained in:
Leonard Lyubich 2020-02-05 14:21:15 +03:00
parent 6bd0d99ddd
commit 8959621826
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -209,7 +209,7 @@ in distributed system.
| 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>