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

rt: avoid early task shutdown #3870

Merged
merged 2 commits into from Jun 18, 2021
Merged

rt: avoid early task shutdown #3870

merged 2 commits into from Jun 18, 2021

Commits on Jun 18, 2021

  1. rt: avoid double task shutdown

    Tokio 1.7.0 introduced a change intended to eagerly shutdown newly
    spawned tasks if the runtime is in the process of shutting down.
    However, it introduced a bug where already spawned tasks could be
    shutdown too early, resulting in the potential introduction of deadlocks
    if tasks acquired mutexes in drop handlers.
    
    Fixes #3869
    carllerche committed Jun 18, 2021
    Configuration menu
    Copy the full SHA
    6055972 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c271c80 View commit details
    Browse the repository at this point in the history