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 4ac53d8 commit 4cadbb2Copy full SHA for 4cadbb2
crates/aws_utils/src/s3.rs
@@ -28,7 +28,7 @@ static S3_TRASH_FOLDER: &str = ".trash/";
28
impl S3Client {
29
pub async fn new(enable_retries: bool) -> anyhow::Result<Self> {
30
let retry_config = match enable_retries {
31
- true => RetryConfig::standard(),
+ true => RetryConfig::standard().with_max_attempts(6),
32
false => RetryConfig::disabled(),
33
};
34
let config = must_s3_config_from_env()
0 commit comments