Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

storage: increase aws maxRetries request config from 3 to 6 #583

Merged
merged 1 commit into from
Nov 6, 2020
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
2 changes: 1 addition & 1 deletion pkg/storage/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const (
s3ProviderOption = "s3.provider"
notFound = "NotFound"
// number of retries to make of operations
maxRetries = 3
maxRetries = 6

// the maximum number of byte to read for seek
maxSkipOffsetByRead = 1 << 16 //64KB
Expand Down