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
See how Git handles detection of files changes: here. Basically, it checks file stats instead of file content to avoid a costly file read, using system lstat and checking st_mtime among others. The Python os module and path.py library provide such data with respectively os.lstat and Path.lstat. The second part of the documentation details a race condition problem that I am not sure applies to us.
This will help the feeder to determine if it should re-parse the song files.
The text was updated successfully, but these errors were encountered: