This commit is contained in:
Chris Lu
2020-11-26 11:25:56 -08:00
parent 0da7ecfd29
commit cc2bd97ad9
2 changed files with 8 additions and 8 deletions

View File

@@ -145,3 +145,11 @@ func (f *Filer) doDeleteCollection(collectionName string) (err error) {
})
}
func (f *Filer) maybeDeleteHardLinks(hardLinkIds []HardLinkId) {
for _, hardLinkId := range hardLinkIds {
if err := f.Store.DeleteHardLink(context.Background(), hardLinkId); err != nil {
glog.Errorf("delete hard link id %d : %v", hardLinkId, err)
}
}
}