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

mount: only print "File.rename error" if there actually is an error - see #2130 (#2322)

This commit is contained in:
Stefan
2018-05-29 19:19:17 +02:00
committed by GitHub
parent 500085d244
commit 2a806a8d8b

View File

@@ -99,8 +99,9 @@ func (f *File) applyPendingRename() {
return
}
fs.Debugf(f.o, "Running delayed rename now")
err := fun()
fs.Errorf(f.Path(), "File.Rename error: %v", err)
if err := fun(); err != nil {
fs.Errorf(f.Path(), "delayed File.Rename error: %v", err)
}
}
// rename attempts to immediately rename a file if there are no open writers.