Skip to content

Commit

Permalink
chore: fmt code
Browse files Browse the repository at this point in the history
  • Loading branch information
moraesjeremias authored and QEDK committed Jun 4, 2024
1 parent 2d87e32 commit b28d281
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -621,9 +621,9 @@ async fn main() {
.init();

let max_concurrent_request: usize = env::var("MAX_CONCURRENT_REQUEST")
.ok()
.and_then(|max_request| max_request.parse::<usize>().ok())
.unwrap_or(256);
.ok()
.and_then(|max_request| max_request.parse::<usize>().ok())
.unwrap_or(256);

let shared_state = Arc::new(AppState {
avail_client: HttpClientBuilder::default()
Expand Down

0 comments on commit b28d281

Please sign in to comment.