Browse Source

Adjust the value of 'maxparts' to 1000

Signed-off-by: Rsplwe <i@rsplwe.com>
pull/37534/head
Rsplwe 3 years ago
committed by GitHub
parent
commit
ccac296821
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/private/Files/ObjectStore/S3.php

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

Loading…
Cancel
Save