1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 09:47:58 +00:00

SyncFile: fix use of fd object after close

This commit is contained in:
Thomas Waldmann 2017-01-22 16:54:06 +01:00
parent ca0c1dab11
commit fc8be58b63

View file

@ -829,8 +829,9 @@ def close_segment(self):
# tell the OS that it does not need to cache what we just wrote,
# avoids spoiling the cache for the OS and other processes.
os.posix_fadvise(self._write_fd.fileno(), 0, 0, os.POSIX_FADV_DONTNEED)
dirname = os.path.dirname(self._write_fd.name)
self._write_fd.close()
sync_dir(os.path.dirname(self._write_fd.name))
sync_dir(dirname)
self._write_fd = None