Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Nov 6, 2024
1 parent a7f72cd commit a2e2b6e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions riven/src/req/regional_requester.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

use memo_map::MemoMap;
use reqwest::{RequestBuilder, StatusCode};
#[cfg(feature = "tracing")]
Expand Down Expand Up @@ -135,7 +134,12 @@ impl RegionalRequester {
backoff.await;
}
Some(delay) => {
log::debug!("Response {} (retried {} times), `retry-after` set, retrying after {:?}.", status, retries, delay);
log::debug!(
"Response {} (retried {} times), `retry-after` set, retrying after {:?}.",
status,
retries,
delay
);
}
}
retries += 1;
Expand Down

0 comments on commit a2e2b6e

Please sign in to comment.