Tags: anycable/anycable
Tags
Fix unsubscribe bug in hub.go Fixed a bug where unsubscribing from a channel would sometimes leave streams in the hub. This was caused by modifying the streams slice while iterating over it, which could cause some streams to be skipped during unsubscription. The fix uses a two-step approach: 1. First collect all streams that need to be removed 2. Then remove them in a separate loop This ensures all streams with the matching identifier are properly unsubscribed.
PreviousNext