Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(objectstorage): add retry attempts to S3 connection
Signed-off-by: Anna Larch <[email protected]>
  • Loading branch information
miaulalala authored and backportbot[bot] committed Apr 23, 2025
commit d393e98c9e34407094523dfc2da62365f660ece0
4 changes: 4 additions & 0 deletions lib/private/Files/ObjectStore/S3ConnectionTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ public function getConnection() {
'connect_timeout' => 5
],
'use_aws_shared_config_files' => false,
'retries' => [
'mode' => 'standard',
'max_attempts' => 5,
],
];

if ($this->params['s3-accelerate']) {
Expand Down
Loading