···51 // Main worker MUST start, else we just error out.
52 let rt = tokio::runtime::Builder::new_current_thread()
53 .enable_all()
54- .build()?;
5556 std::thread::scope(|s| {
57 for num in 1..workers.get() {
···7677 match tokio::runtime::Builder::new_current_thread()
78 .enable_all()
79- .build()
80 {
81 Ok(rt) => {
82 rt.block_on(worker_task(
···51 // Main worker MUST start, else we just error out.
52 let rt = tokio::runtime::Builder::new_current_thread()
53 .enable_all()
54+ .build_local(Default::default())?;
5556 std::thread::scope(|s| {
57 for num in 1..workers.get() {
···7677 match tokio::runtime::Builder::new_current_thread()
78 .enable_all()
79+ .build_local(Default::default())
80 {
81 Ok(rt) => {
82 rt.block_on(worker_task(