diff --git a/src/http.rs b/src/http.rs index c507c84..6623dbb 100644 --- a/src/http.rs +++ b/src/http.rs @@ -235,11 +235,7 @@ impl StatsigHttpClient { .map(jitter) .take(5); let response = Retry::spawn(retry_strategy, || async { - self.http_client - .post(url.clone()) - .json(&body) - .send() - .await + self.http_client.post(url.clone()).json(&body).send().await }) .await; let res = match response {