Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
anapschuch committed Apr 3, 2024
1 parent c063156 commit c81112b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit c81112b

Please sign in to comment.