You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
When scope() returns all remaining scoped futures have to complete. From reading the code this is achieved via synchronous blocking and tokio::task::block_in_place. The latter only works on a corresponding multi threaded runtime.
Please evaluate whether it wouldn't be simpler to declare scope() itself async and run the future completion step asynchronously.
The text was updated successfully, but these errors were encountered:
When scope() returns all remaining scoped futures have to complete. From reading the code this is achieved via synchronous blocking and
tokio::task::block_in_place
. The latter only works on a corresponding multi threaded runtime.Please evaluate whether it wouldn't be simpler to declare
scope()
itself async and run the future completion step asynchronously.The text was updated successfully, but these errors were encountered: