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 342848c commit 15163d9Copy full SHA for 15163d9
src/tool_configuration.rs
@@ -109,14 +109,14 @@ impl BaseClient {
109
.build()
110
.expect("failed to create client"),
111
)
112
- .with(RetryTransientMiddleware::new_with_policy(
113
- ExponentialBackoff::builder().build_with_max_retries(3),
114
- ))
+ .with(mirror_middleware)
+ .with(s3_middleware)
115
.with_arc(Arc::new(AuthenticationMiddleware::from_auth_storage(
116
auth_storage.clone(),
117
)))
118
- .with(mirror_middleware)
119
- .with(s3_middleware)
+ .with(RetryTransientMiddleware::new_with_policy(
+ ExponentialBackoff::builder().build_with_max_retries(3),
+ ))
120
.build();
121
122
let dangerous_client = reqwest_middleware::ClientBuilder::new(
0 commit comments