Skip to content
Snippets Groups Projects
Commit 3e0fb68c authored by Semyon Krestyaninov's avatar Semyon Krestyaninov :dog2:
Browse files

change the type of the part_size field for the MultipartUpload struct

parent ddf050e9
No related branches found
No related tags found
1 merge request!37Изменен тип поля `part_size` для структуры `MultipartUpload` в сервисе `Files`
This commit is part of merge request !37. Comments created here will be created in the context of that merge request.
......@@ -19,7 +19,7 @@ message File {
message MultipartUpload {
File file = 1;
string upload_id = 2; // Идентификатор загрузки хранилища
int32 part_size = 3; // Размер блока для загрузки
uint64 part_size = 3; // Размер блока для загрузки
repeated string part_urls = 4; // Адреса для загрузки пол
repeated CompletedPart parts = 5; // Идентификаторы загруженных блоков (S3 ETAGs)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment