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
channel_unordered is somehow ignoring channel size limits. You get non-sensical results like
Channel{Any}(2) (6 items available)
This is easy to reproduce with e.g. channel_unordered(Map(f), 1:10, size=3). The created Channel object indeed seems to have the correct size it's just storing more output than it should be able to.
The text was updated successfully, but these errors were encountered:
Sorry this is not a bug, put! can't sync across threads... it's very weird that Base doesn't throw an error when you try to do this with channels but I guess it doesn't have any way of knowing what's going on.
channel_unordered
is somehow ignoring channel size limits. You get non-sensical results likeThis is easy to reproduce with e.g.
channel_unordered(Map(f), 1:10, size=3)
. The createdChannel
object indeed seems to have the correct size it's just storing more output than it should be able to.The text was updated successfully, but these errors were encountered: