1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-10 05:13:45 +00:00

vfs: fix applying modtime for an open Write Handle

The symptom of this was that the time set when the file was open was
lost.  This was causing one of the mount tests to fail too.
This commit is contained in:
Nick Craig-Wood
2018-03-06 20:47:11 +00:00
parent 85e0b87c99
commit 0175332987
3 changed files with 54 additions and 1 deletions

View File

@@ -181,7 +181,10 @@ func (fh *WriteFileHandle) close() (err error) {
}
fh.closed = true
// leave writer open until file is transferred
defer fh.file.delWriter(fh, false)
defer func() {
fh.file.delWriter(fh, false)
fh.file.finishWriterClose()
}()
// If file not opened and not safe to truncate then then leave file intact
if !fh.opened && !fh.safeToTruncate() {
return nil