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
fsync() on MacOS does not sync to disk; the correct sync method on MacOS is via fcntl(). Golang os.File.Sync() doesn't do this in version <= 1.11. A fix is in place for 1.12. golang/go#26650
Replace os.File.Sync calls with a direct syscall as a workaround until Go 1.12. golang/go@be10ad7
The text was updated successfully, but these errors were encountered:
fsync() on MacOS does not sync to disk; the correct sync method on MacOS is via fcntl(). Golang os.File.Sync() doesn't do this in version <= 1.11. A fix is in place for 1.12. golang/go#26650
Replace os.File.Sync calls with a direct syscall as a workaround until Go 1.12. golang/go@be10ad7
The text was updated successfully, but these errors were encountered: