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
in version v4.0.0, there is a bug: after create lock_renewal_thread thread, set demon = True,the word is wrong, not "demon", but "daemon",source code as follows self._lock_renewal_thread.demon = True
the right code as follows self._lock_renewal_thread.daemon = True
The text was updated successfully, but these errors were encountered:
zhjchina
changed the title
lock_renewal_thread is not a daemon thread
set lock_renewal_thread daemon property has a bug
May 31, 2024
in version v4.0.0, there is a bug: after create lock_renewal_thread thread, set demon = True,the word is wrong, not "demon", but "daemon",source code as follows
self._lock_renewal_thread.demon = True
the right code as follows
self._lock_renewal_thread.daemon = True
The text was updated successfully, but these errors were encountered: