From 07802b2c8487c6e70e39d0b0cd6bf7705fc88337 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Mon, 12 Oct 2020 15:15:40 -0400 Subject: rt: `worker_threads` must be non-zero (#2947) Co-authored-by: Alice Ryhl --- benches/sync_semaphore.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'benches/sync_semaphore.rs') diff --git a/benches/sync_semaphore.rs b/benches/sync_semaphore.rs index 19a1dd33..17b26148 100644 --- a/benches/sync_semaphore.rs +++ b/benches/sync_semaphore.rs @@ -49,8 +49,7 @@ fn uncontended_concurrent_multi(b: &mut Bencher) { } fn uncontended_concurrent_single(b: &mut Bencher) { - let rt = tokio::runtime::Builder::new_multi_thread() - .worker_threads(0) + let rt = tokio::runtime::Builder::new_current_thread() .build() .unwrap(); -- cgit v1.2.3