mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-15 20:06:19 +08:00
chore: hot fix panic fs.verify (#5696)
This commit is contained in:

committed by
GitHub

parent
610d397f76
commit
34165013c8
@@ -163,9 +163,10 @@ func (c *commandFsVerify) verifyProcessMetadata(path string, wg *sync.WaitGroup)
|
||||
Directory: message.NewParentPath,
|
||||
Name: message.NewEntry.Name,
|
||||
})
|
||||
if strings.HasSuffix(errReq.Error(), "no entry is found in filer store") {
|
||||
return nil
|
||||
} else if errReq != nil {
|
||||
if errReq != nil {
|
||||
if strings.HasSuffix(errReq.Error(), "no entry is found in filer store") {
|
||||
return nil
|
||||
}
|
||||
return errReq
|
||||
}
|
||||
if entryResp.Entry.Attributes.Mtime == message.NewEntry.Attributes.Mtime &&
|
||||
|
Reference in New Issue
Block a user