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
After Lifecycle is terminated (via SIGINT or a call to terminate), threads are left dangling, stuck in while True loops which will never complete.
Audit such loops (cursory examination suggests new_block_watch and _start_event_timer are the main culprits) and ensure they cleanly exit. Consider thread.joining them to make disposal more deterministic.
The text was updated successfully, but these errors were encountered:
After
Lifecycle
is terminated (via SIGINT or a call toterminate
), threads are left dangling, stuck inwhile True
loops which will never complete.Audit such loops (cursory examination suggests
new_block_watch
and_start_event_timer
are the main culprits) and ensure they cleanly exit. Considerthread.join
ing them to make disposal more deterministic.The text was updated successfully, but these errors were encountered: