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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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') ?? []; |
|
|
|
} |
|
|
|
|