Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a blocking subscriber prevents other subscribers from receiving a message #256

Merged
merged 2 commits into from
Jan 26, 2022

Commits on Dec 3, 2021

  1. Fix a blocking subscriber prevents other subscriber from receiving a …

    …message
    
    A gochannel subscriber could prevent subscribers which were registered
    afterwards from receiving a message.
    
    Steps to reproduce:
    1. Create a subscriber A subscribing to topic T.
    2. Create a subscriber B subscribing to topic T.
    3. Send a message on topic T.
    4. Subscriber B will never receive a message as long as subscriber A
       doesn't call ack.
    
    This pull request fixes this behaviour by distributing the messages
    concurrently.
    
    Fixes ThreeDotsLabs#247.
    boreq committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    0d70402 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2022

  1. Configuration menu
    Copy the full SHA
    ea25612 View commit details
    Browse the repository at this point in the history