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: free resources on close #173

Merged
merged 3 commits into from
Sep 8, 2023

Commits on Aug 15, 2023

  1. fix: free resources on close

    Our transport class Manticore is explicitly threadsafe and by default creates
    a pool with up to 50 connections; therefore we do not need an individual
    instance of Manticore per worker thread. Using a shared instance resolves a
    memory leak that was caused by using a strong reference to the worker threads
    themselves as a key in the routing to per-thread clients, which prevented
    those threads from being garbage-collected.
    yaauie committed Aug 15, 2023
    Configuration menu
    Copy the full SHA
    25a9389 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

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

Commits on Sep 8, 2023

  1. Update CHANGELOG.md

    yaauie committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    c99619c View commit details
    Browse the repository at this point in the history