diff options
author | Rsplwe <i@rsplwe.com> | 2023-04-01 21:20:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-01 21:20:52 +0800 |
commit | ccac29682143fe9c6af2dfd2e458f02f7867b30b (patch) | |
tree | d43b6ca9f3b851edbfaa66acac2500095355a2ba | |
parent | 06ab4f25eb423a5a3ff146f5fcda81f60993010a (diff) | |
download | nextcloud-server-ccac29682143fe9c6af2dfd2e458f02f7867b30b.tar.gz nextcloud-server-ccac29682143fe9c6af2dfd2e458f02f7867b30b.zip |
Adjust the value of 'maxparts' to 1000
Signed-off-by: Rsplwe <i@rsplwe.com>
-rw-r--r-- | lib/private/Files/ObjectStore/S3.php | 2 |
1 files changed, 1 insertions, 1 deletions
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') ?? []; } |