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 ec50f79 commit 7e0502eCopy full SHA for 7e0502e
1 file changed
crates/rustapi-extras/src/retry.rs
@@ -194,14 +194,13 @@ impl MiddlewareLayer for RetryLayer {
194
195
// Success or no more retries
196
if attempt > 0 {
197
- tracing::info!(
198
- attempt = attempt + 1,
199
- status = status,
200
- "Request succeeded after retry"
201
- );
202
- }
203
- return response;
+ tracing::info!(
+ attempt = attempt + 1,
+ status = status,
+ "Request succeeded after retry"
+ );
204
}
+ return response;
205
206
207
// Should be unreachable if logic is correct, but safe fallback
0 commit comments