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
Solution: inside UnixFileLock do not ignore all exceptions. If OSError is raised with errno=ENOSYS, then show a warning, delete the lock file and fallback to SoftFileLock.
The text was updated successfully, but these errors were encountered:
I'm using a lustre file system. Looks like it doesn't support flock syscall.
Here is a small script I'm trying to run:
Here is the output:
Let's try running under strace:
Solution: inside
UnixFileLock
do not ignore all exceptions. If OSError is raised with errno=ENOSYS, then show a warning, delete the lock file and fallback to SoftFileLock.The text was updated successfully, but these errors were encountered: