You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
only check if thread is alive after cancelling it (#279)
it appears that in some cases, especially under high load, calling
`.cancel()` will immediately stop the thread, making the `.join()` call
fail. To avoid this, we first `cancel()`, then check `is_alive()` and
only _then_ `join()` the thread.
fixes#276closes#279
0 commit comments