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.
1 parent d89e4d2 commit fbe3252Copy full SHA for fbe3252
lib/private/Files/ObjectStore/S3ConnectionTrait.php
@@ -127,10 +127,14 @@ public function getConnection() {
127
128
if (isset($this->params['request_checksum_calculation'])) {
129
$options['request_checksum_calculation'] = $this->params['request_checksum_calculation'];
130
+ } else {
131
+ $options['request_checksum_calculation'] = 'when_required';
132
}
133
134
if (isset($this->params['response_checksum_validation'])) {
135
$options['response_checksum_validation'] = $this->params['response_checksum_validation'];
136
137
+ $options['response_checksum_validation'] = 'when_required';
138
139
140
if ($this->getProxy()) {
0 commit comments