Merge pull request #56154 from nextcloud/backport/56096/stable32

[stable32] fix(s3): expose request_checksum_calculation and response_checksum_va…
pull/55543/head
Daniel 7 months ago committed by GitHub
commit 46f144d21c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      lib/private/Files/ObjectStore/S3ConnectionTrait.php

@ -119,6 +119,14 @@ trait S3ConnectionTrait {
$options['endpoint'] = $base_url;
}
if (isset($this->params['request_checksum_calculation'])) {
$options['request_checksum_calculation'] = $this->params['request_checksum_calculation'];
}
if (isset($this->params['response_checksum_validation'])) {
$options['response_checksum_validation'] = $this->params['response_checksum_validation'];
}
if ($this->getProxy()) {
$options['http']['proxy'] = $this->getProxy();
}

Loading…
Cancel
Save