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 was archived by the owner on Nov 15, 2023. It is now read-only.
Experiencing problems? Have you tried our Stack Exchange first?
This is not a support question.
Description of bug
In #13504, the underlying channel of tracing_unbounded channel switched from futures-channel to async-channel.
In async-channel, the unconsumed messages of the channel will not drop even though all the receivers have been dropped and these messages can never be accessed smol-rs/async-channel#23, this behavior may be an issue when using tracing_unbounded channel to send Sender<T> to another worker and wait for receiving from this Sender<T> (like the usage mentioned at smol-rs/async-channel#23).
In autonomys/subspace#1352 (comment), we have encountered an issue with the abovementioned usage which causes our test block forever. I'm not quite familiar with the tracing_unbounded usage in substrate, but I do observe some use cases that use tracing_unbounded channel to send Sender<T> and they may be potential issues:
Is there an existing issue?
Experiencing problems? Have you tried our Stack Exchange first?
Description of bug
In #13504, the underlying channel of
tracing_unboundedchannel switched fromfutures-channeltoasync-channel.In
async-channel, the unconsumed messages of the channel will not drop even though all the receivers have been dropped and these messages can never be accessed smol-rs/async-channel#23, this behavior may be an issue when usingtracing_unboundedchannel to sendSender<T>to another worker and wait for receiving from thisSender<T>(like the usage mentioned at smol-rs/async-channel#23).In autonomys/subspace#1352 (comment), we have encountered an issue with the abovementioned usage which causes our test block forever. I'm not quite familiar with the
tracing_unboundedusage in substrate, but I do observe some use cases that usetracing_unboundedchannel to sendSender<T>and they may be potential issues:substrate/client/utils/src/status_sinks.rs
Line 61 in 851a826
substrate/client/peerset/src/lib.rs
Line 278 in 851a826
substrate/client/network/sync/src/service/network.rs
Line 124 in 851a826
substrate/client/network/sync/src/engine.rs
Line 331 in 851a826
Steps to reproduce
See smol-rs/async-channel#23