Skip to content

Commit

Permalink
test: increase concurrency limit
Browse files Browse the repository at this point in the history
  • Loading branch information
roberts-pumpurs committed Jan 21, 2025
1 parent c8edf3e commit a7d3b62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/solana-event-forwarder/src/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,7 @@ mod tests {
};
let rpc_client =
retrying_solana_http_sender::new_client(&retrying_solana_http_sender::Config {
max_concurrent_rpc_requests: 1,
max_concurrent_rpc_requests: 10,
solana_http_rpc: rpc_client_url.parse().unwrap(),
commitment: CommitmentConfig::confirmed(),
});
Expand Down Expand Up @@ -1325,7 +1325,7 @@ mod tests {
};
let rpc_client =
retrying_solana_http_sender::new_client(&retrying_solana_http_sender::Config {
max_concurrent_rpc_requests: 1,
max_concurrent_rpc_requests: 10,
solana_http_rpc: rpc_client_url.parse().unwrap(),
commitment: CommitmentConfig::confirmed(),
});
Expand Down
2 changes: 1 addition & 1 deletion crates/solana-listener/src/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ mod tests {
};
let rpc_client =
retrying_solana_http_sender::new_client(&retrying_solana_http_sender::Config {
max_concurrent_rpc_requests: 1,
max_concurrent_rpc_requests: 10,
solana_http_rpc: rpc_client_url.parse().unwrap(),
commitment: CommitmentConfig::confirmed(),
});
Expand Down

0 comments on commit a7d3b62

Please sign in to comment.