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
However, when try_join_all switches to FuturesOrdered for large inputs, this is not longer the case: implementation processes future results in order, and if first future is slow, and second future is already finished, try_join_all won't return immediately, but will wait for first slow future completion.
try_join_all
documentation says:source
However, when
try_join_all
switches toFuturesOrdered
for large inputs, this is not longer the case: implementation processes future results in order, and if first future is slow, and second future is already finished,try_join_all
won't return immediately, but will wait for first slow future completion.@JakobDegen made an example reproducing this issue: playground.
The text was updated successfully, but these errors were encountered: