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

refactor(swarm)!: don't share event buffer for established connections #3188

Merged
merged 11 commits into from
Jan 19, 2023

Commits on Dec 2, 2022

  1. Don't use task_event_buffer_size for pending connections

    The task for a pending connection only ever sends one event into this
    channel: Either a success or a failure. Cloning a sender adds one
    slot to the capacity of the channel. Hence, we can start this capacity
    at 0 and have the `cloning` of the `Sender` take care of properly
    increasing the capacity.
    thomaseizinger committed Dec 2, 2022
    Configuration menu
    Copy the full SHA
    87be0b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0019edf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d610b85 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2022

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

Commits on Dec 19, 2022

  1. Configuration menu
    Copy the full SHA
    57f11c2 View commit details
    Browse the repository at this point in the history
  2. Update docs

    thomaseizinger committed Dec 19, 2022
    Configuration menu
    Copy the full SHA
    39d02f4 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. Configuration menu
    Copy the full SHA
    7d80e8a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f71b87a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5d49db8 View commit details
    Browse the repository at this point in the history
  4. Fix formatting

    thomaseizinger committed Jan 17, 2023
    Configuration menu
    Copy the full SHA
    e9fc37c View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2023

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