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 80781f9 commit 488ed6aCopy full SHA for 488ed6a
rust/cubestore/cubestore/src/bin/cubestored.rs
@@ -77,6 +77,9 @@ fn main() {
77
if let Ok(var) = std::env::var("CUBESTORE_EVENT_LOOP_WORKER_THREADS") {
78
tokio_builder.worker_threads(var.parse().unwrap());
79
}
80
+ if let Ok(var) = std::env::var("CUBESTORE_EVENT_LOOP_MAX_BLOCKING_THREADS") {
81
+ tokio_builder.max_blocking_threads(var.parse().unwrap());
82
+ }
83
let runtime = tokio_builder.build().unwrap();
84
runtime.block_on(async move {
85
init_agent_sender().await;
0 commit comments