wusong
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
2 deletions
-
weed/mount/meta_cache/meta_cache.go
|
|
@ -70,8 +70,12 @@ func (mc *MetaCache) AtomicUpdateEntryFromFiler(ctx context.Context, oldPath uti |
|
|
|
//mc.Lock()
|
|
|
|
//defer mc.Unlock()
|
|
|
|
|
|
|
|
oldDir, _ := oldPath.DirAndName() |
|
|
|
if mc.isCachedFn(util.FullPath(oldDir)) { |
|
|
|
entry, err := mc.FindEntry(ctx, oldPath) |
|
|
|
if err != nil && err != filer_pb.ErrNotFound { |
|
|
|
glog.Errorf("Metacache: find entry error: %v", err) |
|
|
|
return err |
|
|
|
} |
|
|
|
if entry != nil { |
|
|
|
if oldPath != "" { |
|
|
|
if newEntry != nil && oldPath == newEntry.FullPath { |
|
|
|
// skip the unnecessary deletion
|
|
|
|