aboutsummaryrefslogtreecommitdiff
path: root/weed/command/fix.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/command/fix.go')
-rw-r--r--weed/command/fix.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/weed/command/fix.go b/weed/command/fix.go
index 46cfc40db..f0499a818 100644
--- a/weed/command/fix.go
+++ b/weed/command/fix.go
@@ -127,11 +127,10 @@ func doFixOneVolume(basepath string, baseFileName string, collection string, vol
if err := storage.ScanVolumeFile(basepath, collection, vid, storage.NeedleMapInMemory, scanner); err != nil {
glog.Fatalf("scan .dat File: %v", err)
- os.Remove(indexFileName)
}
if err := nm.SaveToIdx(indexFileName); err != nil {
- glog.Fatalf("save to .idx File: %v", err)
os.Remove(indexFileName)
+ glog.Fatalf("save to .idx File: %v", err)
}
}