Skip to content

Commit

Permalink
feat: Bumps max concurrent request value
Browse files Browse the repository at this point in the history
  • Loading branch information
moraesjeremias authored and QEDK committed Jun 4, 2024
1 parent b28d281 commit 7caec3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ async fn main() {
let max_concurrent_request: usize = env::var("MAX_CONCURRENT_REQUEST")
.ok()
.and_then(|max_request| max_request.parse::<usize>().ok())
.unwrap_or(256);
.unwrap_or(1024);

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

0 comments on commit 7caec3b

Please sign in to comment.