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

Switched start_blocking_portal() to use daemon threads #750

Merged
merged 6 commits into from
Aug 30, 2024

Commits on Jun 23, 2024

  1. Switched start_blocking_portal() to use a daemon thread instead of Th…

    …readPoolExecutor
    
    ThreadPoolExecutor used daemon threads in Python 3.8 and non-daemon threads in 3.9 onwards. But daemon threads are essential for the use case where we want to have a "loitering" blocking portal which will only be shut down via an atexit hook.
    agronholm committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    a76e668 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

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

Commits on Jul 20, 2024

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

Commits on Aug 29, 2024

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

Commits on Aug 30, 2024

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