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
I think it is a tokio or futures_concurrency issue, since none of the APIs in the crate included in this repository you are using have unsafe code (iter, chain, for_each).
I have never used futures-concurrency, and I don't intend to review everything of it, but it has bunch of very suspicious unsafe codes even at a cursory glance: This would be unsound when vec, the storage of slab, is reallocated. This probably has the same problem as tokio-rs/tokio#2612. The heavy use of ManuallyDrop around Pin API reminds me of async-rs/async-std#903. etc.
Tried to use concurrent streams to sleep in parallel with tokio:
But sometimes I get crash:
Without "current_thread" flavor program just freeze
Other runtimes work fine:
async_std
smol
Also tokio runtime with smol Timer works fine:
Is that Tokio issue?
The text was updated successfully, but these errors were encountered: