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
Daemon threads are abruptly stopped at shutdown. Their resources (such as open files, database transactions, etc.) may not be released properly. If you want your threads to stop gracefully, make them non-daemonic and use a suitable signalling mechanism such as an Event.
We need to convert all threads to regular, non-daemon, threads to implement a correct shutdown (see also #115).
At the moment some threads are killed before proper termination - join() with timeout is necessary. Related to #34
The text was updated successfully, but these errors were encountered: