Fixing BlockBlobMaxUploadBlobBytes value (#207)
Reverting BlockBlobMaxUploadBlobBytes to 256MB
This commit is contained in:
Родитель
bfba60a016
Коммит
5d8d5fa544
|
@ -10,7 +10,7 @@ import (
|
|||
|
||||
const (
|
||||
// BlockBlobMaxUploadBlobBytes indicates the maximum number of bytes that can be sent in a call to Upload.
|
||||
BlockBlobMaxUploadBlobBytes = 10 * 1024 * 1024 * 1024 // 10GiB
|
||||
BlockBlobMaxUploadBlobBytes = 256 * 1024 * 1024 // 256MB
|
||||
|
||||
// BlockBlobMaxStageBlockBytes indicates the maximum number of bytes that can be sent in a call to StageBlock.
|
||||
BlockBlobMaxStageBlockBytes = 4000 * 1024 * 1024 // 4000MiB
|
||||
|
|
Загрузка…
Ссылка в новой задаче