File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ impl S3Backend {
31
31
32
32
let shared_config = runtime. block_on ( aws_config:: load_from_env ( ) ) ;
33
33
let mut config_builder = aws_sdk_s3:: config:: Builder :: from ( & shared_config)
34
- . retry_config ( RetryConfig :: new ( ) . with_max_attempts ( 5 ) )
34
+ . retry_config ( RetryConfig :: new ( ) . with_max_attempts ( 3 ) )
35
35
. region ( Region :: new ( config. s3_region . clone ( ) ) ) ;
36
36
37
37
if let Some ( ref endpoint) = config. s3_endpoint {
@@ -233,7 +233,7 @@ impl<'a> StorageTransaction for S3StorageTransaction<'a> {
233
233
let to_delete = Delete :: builder ( )
234
234
. set_objects ( Some (
235
235
list. contents
236
- . expect ( "didn't get context even though but key_count was > 0" )
236
+ . expect ( "didn't get content even though key_count was > 0" )
237
237
. into_iter ( )
238
238
. filter_map ( |obj| {
239
239
obj. key ( )
You can’t perform that action at this time.
0 commit comments