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 backportbot-nextcloud[bot]
parent bfe01be0c5
commit 5108e7b68f

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') ?? [];
}