1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-28 15:40:36 +02:00

fix framed_read

This commit is contained in:
Nikolay Kim
2019-11-19 11:06:55 +06:00
parent 3105cde168
commit 617e40a7e9
2 changed files with 13 additions and 8 deletions

View File

@ -54,12 +54,16 @@ where
///
/// Note that this function is intended to be used only for testing purpose.
/// This function panics on nested call.
pub fn block_fn<F, R>(f: F) -> F::Output
pub fn block_fn<F, R>(f: F) -> R::Output
where
F: FnOnce() -> R,
R: Future,
{
RT.with(move |rt| rt.borrow_mut().get_mut().block_on(lazy(|_| f())))
RT.with(move |rt| {
let mut rt = rt.borrow_mut();
let fut = rt.get_mut().block_on(lazy(|_| f()));
rt.get_mut().block_on(fut)
})
}
/// Spawn future to the current test runtime.