Skip to content

Commit 0c54a15

Browse files
committed
Increase the default number of rpc serving threads
This may be responsible for the timeouts on Windows CI, maybe clients aren't closing their connections in the same way? Anyway, it's a small enough change that it shouldn't wreck performance, and it's worth it to check if this fixes this pain in the butt CI issue.
1 parent fd91cea commit 0c54a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trin-core/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub struct TrinConfig {
4444
pub web3_ipc_path: String, // TODO: Change to PathBuf
4545

4646
#[structopt(
47-
default_value = "2",
47+
default_value = "5",
4848
long = "pool-size",
4949
help = "max size of threadpool"
5050
)]

0 commit comments

Comments
 (0)