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
The async_std::future::timeout function panics if a large duration is provided. This should either be documented as a possible panic conditon or changed to no longer panic.
The
async_std::future::timeout
function panics if a large duration is provided. This should either be documented as a possible panic conditon or changed to no longer panic.Repro:
Looks like the cause is an unchecked add in smol: https://github.com/smol-rs/async-io/blob/master/src/lib.rs#L162
The text was updated successfully, but these errors were encountered: