We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf02d9 commit 23a3e0eCopy full SHA for 23a3e0e
src/app.rs
@@ -421,6 +421,7 @@ fn get_log_levels(default: &str) -> String {
421
422
pub fn build_runtime(threads: Option<usize>, thread_name: &str) -> Result<Runtime, ExitCode> {
423
let mut rt_builder = runtime::Builder::new_multi_thread();
424
+ rt_builder.max_blocking_threads(20_000);
425
rt_builder.enable_all().thread_name(thread_name);
426
427
if let Some(threads) = threads {
0 commit comments