fix: use run instead of block_on

This commit is contained in:
dignifiedquire 2020-05-02 20:24:59 +02:00
parent 1214bc2dee
commit faea222b9c

View file

@ -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)) }
} }
} }