fix: disable the internal s3sdk multi part copy logic

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/44052/head
Robin Appelman 4 months ago committed by Benjamin Gaussorgues
parent cb376a62a9
commit eecd52628d

@ -212,7 +212,8 @@ trait S3ObjectTrait {
$copy->copy();
} else {
$this->getConnection()->copy($this->getBucket(), $from, $this->getBucket(), $to, 'private', array_merge([
'params' => $this->getSSECParameters() + $this->getSSECParameters(true)
'params' => $this->getSSECParameters() + $this->getSSECParameters(true),
'mup_threshold' => PHP_INT_MAX,
], $options));
}
}

Loading…
Cancel
Save