mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
skip if path changed
mitigate https://github.com/seaweedfs/seaweedfs/issues/4968
This commit is contained in:
parent
4bb3911fde
commit
310eec9a9c
|
@ -150,7 +150,10 @@ func (i *InodeToPath) MarkChildrenCached(fullpath util.FullPath) {
|
||||||
defer i.RUnlock()
|
defer i.RUnlock()
|
||||||
inode, found := i.path2inode[fullpath]
|
inode, found := i.path2inode[fullpath]
|
||||||
if !found {
|
if !found {
|
||||||
glog.Fatalf("MarkChildrenCached not found inode %v", fullpath)
|
// https://github.com/seaweedfs/seaweedfs/issues/4968
|
||||||
|
// glog.Fatalf("MarkChildrenCached not found inode %v", fullpath)
|
||||||
|
glog.Warningf("MarkChildrenCached not found inode %v", fullpath)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
path, found := i.inode2path[inode]
|
path, found := i.inode2path[inode]
|
||||||
path.isChildrenCached = true
|
path.isChildrenCached = true
|
||||||
|
|
Loading…
Reference in a new issue