From 93c60c34e1cce1bd02699280405559c421177d40 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 24 Mar 2016 15:23:27 +0000 Subject: [PATCH] b2: Fix incorrect value of Precision - should be 1ms not 1s --- b2/b2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2/b2.go b/b2/b2.go index e96fcf8b7..13fb296e9 100644 --- a/b2/b2.go +++ b/b2/b2.go @@ -615,7 +615,7 @@ func (f *Fs) Rmdir() error { // Precision of the remote func (f *Fs) Precision() time.Duration { - return time.Second + return time.Millisecond } // deleteByID deletes a file version given Name and ID