forked from mirror/async-std
Lower the timeout to 1 second
This commit is contained in:
parent
6677d52c2d
commit
21c5c48cb6
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ static POOL: Lazy<Pool> = Lazy::new(|| {
|
|||
|
||||
fn start_thread() {
|
||||
SLEEPING.fetch_add(1, Ordering::SeqCst);
|
||||
let timeout = Duration::from_secs(10);
|
||||
let timeout = Duration::from_secs(1);
|
||||
|
||||
thread::Builder::new()
|
||||
.name("async-std/blocking".to_string())
|
||||
|
|
Loading…
Reference in a new issue