[volume] remove truncate idx file if size not healthy (#6043)

This commit is contained in:
Konstantin Lebedev
2024-09-19 13:04:08 +05:00
committed by GitHub
parent 50e22864cf
commit 6d4f5c94ac
2 changed files with 3 additions and 7 deletions

View File

@@ -135,7 +135,7 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind
// capactiy overloading.
if !v.HasRemoteFile() {
glog.V(0).Infof("checking volume data integrity for volume %d", v.Id)
if v.lastAppendAtNs, err = CheckAndFixVolumeDataIntegrity(v, indexFile); err != nil {
if v.lastAppendAtNs, err = CheckVolumeDataIntegrity(v, indexFile); err != nil {
v.noWriteOrDelete = true
glog.V(0).Infof("volumeDataIntegrityChecking failed %v", err)
}