diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-06-22 16:29:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 16:29:05 +0200 |
commit | 286f79c388b3f4e67dfe39accfb939576c9e3658 (patch) | |
tree | 6411b2717cfa9997b49f0c2f6a1400a6b7dc07d5 /lib | |
parent | d1c19fbe2382edada8d050cf917e4452c5dee0c1 (diff) | |
parent | 60a3bf8572127c752c00d601581a970928f67608 (diff) | |
download | nextcloud-server-286f79c388b3f4e67dfe39accfb939576c9e3658.tar.gz nextcloud-server-286f79c388b3f4e67dfe39accfb939576c9e3658.zip |
Merge pull request #21447 from nextcloud/backport/21406/stable19
[stable19] Disable Client-Side Monitoring on AWS storage
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Files/ObjectStore/S3ConnectionTrait.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/Files/ObjectStore/S3ConnectionTrait.php b/lib/private/Files/ObjectStore/S3ConnectionTrait.php index 0208df1908a..16a48ee82a0 100644 --- a/lib/private/Files/ObjectStore/S3ConnectionTrait.php +++ b/lib/private/Files/ObjectStore/S3ConnectionTrait.php @@ -47,7 +47,7 @@ trait S3ConnectionTrait { /** @var int */ protected $timeout; - + /** @var int */ protected $uploadPartSize; @@ -99,7 +99,8 @@ trait S3ConnectionTrait { 'endpoint' => $base_url, 'region' => $this->params['region'], 'use_path_style_endpoint' => isset($this->params['use_path_style']) ? $this->params['use_path_style'] : false, - 'signature_provider' => \Aws\or_chain([self::class, 'legacySignatureProvider'], ClientResolver::_default_signature_provider()) + 'signature_provider' => \Aws\or_chain([self::class, 'legacySignatureProvider'], ClientResolver::_default_signature_provider()), + 'csm' => false, ]; if (isset($this->params['proxy'])) { $options['request.options'] = ['proxy' => $this->params['proxy']]; |