Adjust the value of 'maxparts' to 1000

Signed-off-by: Rsplwe <i@rsplwe.com>
This commit is contained in:
Rsplwe 2023-04-01 21:20:52 +08:00 committed by GitHub
parent 06ab4f25eb
commit ccac296821
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ class S3 implements IObjectStore, IObjectStoreMultiPartUpload {
'Bucket' => $this->bucket,
'Key' => $urn,
'UploadId' => $uploadId,
'MaxParts' => 10000
'MaxParts' => 1000
]);
return $parts->get('Parts') ?? [];
}