Browse Source

also remove Sync() for idx file

pull/3263/head
chrislu 3 years ago
parent
commit
06a8b174b5
  1. 3
      weed/storage/volume_vacuum.go

3
weed/storage/volume_vacuum.go

@ -317,9 +317,6 @@ func (v *Volume) makeupDiff(newDatFileName, newIdxFileName, oldDatFileName, oldI
if err != nil { if err != nil {
return fmt.Errorf("cannot write indexfile %s: %v", newIdxFileName, err) return fmt.Errorf("cannot write indexfile %s: %v", newIdxFileName, err)
} }
if err := idx.Sync(); err != nil {
return fmt.Errorf("cannot sync indexfile %s: %v", newIdxFileName, err)
}
} }
return nil return nil

Loading…
Cancel
Save