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 fcntl.flock(self._fd, fcntl.LOCK_UN) another process may acquire a lock before os.unlink(self._path) deletes it, so a third process may acquire it while the second still holds it. The lock file should be deleted before it is released.
The text was updated successfully, but these errors were encountered:
After
fcntl.flock(self._fd, fcntl.LOCK_UN)
another process may acquire a lock beforeos.unlink(self._path)
deletes it, so a third process may acquire it while the second still holds it. The lock file should be deleted before it is released.The text was updated successfully, but these errors were encountered: