forked from TrueCloudLab/rclone
b2: Fix incorrect value of Precision - should be 1ms not 1s
This commit is contained in:
parent
02c11dd4a7
commit
93c60c34e1
1 changed files with 1 additions and 1 deletions
2
b2/b2.go
2
b2/b2.go
|
@ -615,7 +615,7 @@ func (f *Fs) Rmdir() error {
|
||||||
|
|
||||||
// Precision of the remote
|
// Precision of the remote
|
||||||
func (f *Fs) Precision() time.Duration {
|
func (f *Fs) Precision() time.Duration {
|
||||||
return time.Second
|
return time.Millisecond
|
||||||
}
|
}
|
||||||
|
|
||||||
// deleteByID deletes a file version given Name and ID
|
// deleteByID deletes a file version given Name and ID
|
||||||
|
|
Loading…
Add table
Reference in a new issue