From: Rsplwe Date: Sat, 1 Apr 2023 13:20:52 +0000 (+0800) Subject: Adjust the value of 'maxparts' to 1000 X-Git-Tag: v26.0.3rc1~11^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5108e7b68f6db67a0e3af089be44bd770145466a;p=nextcloud-server.git Adjust the value of 'maxparts' to 1000 Signed-off-by: Rsplwe --- diff --git a/lib/private/Files/ObjectStore/S3.php b/lib/private/Files/ObjectStore/S3.php index ebc8886f12d..964d82ec581 100644 --- a/lib/private/Files/ObjectStore/S3.php +++ b/lib/private/Files/ObjectStore/S3.php @@ -73,7 +73,7 @@ class S3 implements IObjectStore, IObjectStoreMultiPartUpload { 'Bucket' => $this->bucket, 'Key' => $urn, 'UploadId' => $uploadId, - 'MaxParts' => 10000 + 'MaxParts' => 1000 ]); return $parts->get('Parts') ?? []; }