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 actual channel capacity problem is still present. Firing up a new subscription should probably behave the same way as subscribing to existing one: the initial rows are sent via mpsc channel and the broadcast channel is used after that to send change events only.
The broadcast channel used by subscriptions (
corrosion/crates/corro-agent/src/api/public/pubsub.rs
Line 621 in 93561d1
Somehow, in this case,
forward_sub_to_sender
simply stops forwarding any event -corrosion/crates/corro-agent/src/api/public/pubsub.rs
Line 728 in 93561d1
It looks like the
select!
never matchesRecvError::Lagged
for some reasons.The text was updated successfully, but these errors were encountered: