diff --git a/crates/webclaw-fetch/src/client.rs b/crates/webclaw-fetch/src/client.rs index c60554a..f89343c 100644 --- a/crates/webclaw-fetch/src/client.rs +++ b/crates/webclaw-fetch/src/client.rs @@ -210,10 +210,7 @@ impl FetchClient { /// with exponential backoff: 0s, 1s (2 attempts total). #[instrument(skip(self), fields(url = %url))] pub async fn fetch(&self, url: &str) -> Result { - let delays = [ - Duration::ZERO, - Duration::from_secs(1), - ]; + let delays = [Duration::ZERO, Duration::from_secs(1)]; let mut last_err = None; for (attempt, delay) in delays.iter().enumerate() {