lib/protocol, lib/model: Implement high precision time stamps (fixes #3305)
This adds a new nanoseconds field to the FileInfo, populates it during scans and sets the non-truncated time in Chtimes calls. The actual file modification time is defined as modified_s seconds + modified_ns nanoseconds. It's expected that the modified_ns field is <= 1e9 (that is, all whole seconds should go in the modified_s field) but not really enforced. Given that it's an int32 the timestamp can be adjusted += ~2.9 seconds by the modified_ns field... GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3431
This commit is contained in:
committed by
Audrius Butkevicius
parent
0655991a19
commit
ea87bcefd6
@@ -332,7 +332,7 @@ func TestDeregisterOnFailInCopy(t *testing.T) {
|
||||
f := setUpRwFolder(m)
|
||||
|
||||
// queue.Done should be called by the finisher routine
|
||||
f.queue.Push("filex", 0, 0)
|
||||
f.queue.Push("filex", 0, time.Time{})
|
||||
f.queue.Pop()
|
||||
|
||||
if f.queue.lenProgress() != 1 {
|
||||
@@ -405,7 +405,7 @@ func TestDeregisterOnFailInPull(t *testing.T) {
|
||||
f := setUpRwFolder(m)
|
||||
|
||||
// queue.Done should be called by the finisher routine
|
||||
f.queue.Push("filex", 0, 0)
|
||||
f.queue.Push("filex", 0, time.Time{})
|
||||
f.queue.Pop()
|
||||
|
||||
if f.queue.lenProgress() != 1 {
|
||||
|
||||
Reference in New Issue
Block a user