We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f55d784 + 91434f1 commit 46f144dCopy full SHA for 46f144d
lib/private/Files/ObjectStore/S3ConnectionTrait.php
@@ -119,6 +119,14 @@ public function getConnection() {
119
$options['endpoint'] = $base_url;
120
}
121
122
+ if (isset($this->params['request_checksum_calculation'])) {
123
+ $options['request_checksum_calculation'] = $this->params['request_checksum_calculation'];
124
+ }
125
+
126
+ if (isset($this->params['response_checksum_validation'])) {
127
+ $options['response_checksum_validation'] = $this->params['response_checksum_validation'];
128
129
130
if ($this->getProxy()) {
131
$options['http']['proxy'] = $this->getProxy();
132
0 commit comments