forked from mirror/async-std
fix: use run instead of block_on
This commit is contained in:
parent
1214bc2dee
commit
faea222b9c
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ impl Builder {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Run the future as a task.
|
// Run the future as a task.
|
||||||
unsafe { TaskLocalsWrapper::set_current(&wrapped.tag, || smol::block_on(wrapped)) }
|
unsafe { TaskLocalsWrapper::set_current(&wrapped.tag, || smol::run(wrapped)) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue