fix threadpool size to be big enough

This commit is contained in:
Stephan Dilly 2020-03-30 18:20:51 +02:00
parent 264be544c2
commit 6d8b9c3fb6

View file

@ -108,6 +108,7 @@ fn set_panic_handlers() {
error!("thread panic: {:?}", e);
panic!(e)
})
.num_threads(4)
.build_global()
.unwrap();
}