Browse Source

docs(meta_cache): readability fixes (#3691)

Signed-off-by: Ryan Russell <git@ryanrussell.org>

Signed-off-by: Ryan Russell <git@ryanrussell.org>
pull/3693/head
Ryan Russell 2 years ago
committed by GitHub
parent
commit
d65bdeef08
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      weed/mount/meta_cache/cache_config.go
  2. 2
      weed/mount/meta_cache/meta_cache_subscribe.go

2
weed/mount/meta_cache/cache_config.go

@ -6,7 +6,7 @@ var (
_ = util.Configuration(&cacheConfig{})
)
// implementing util.Configuraion
// implementing util.Configuration
type cacheConfig struct {
dir string
}

2
weed/mount/meta_cache/meta_cache_subscribe.go

@ -46,7 +46,7 @@ func SubscribeMetaEvents(mc *MetaCache, selfSignature int32, client filer_pb.Fil
mc.invalidateFunc(newKey, message.NewEntry)
}
} else if filer_pb.IsCreate(resp) {
// no need to invaalidate
// no need to invalidate
} else if filer_pb.IsDelete(resp) {
oldKey := util.NewFullPath(resp.Directory, message.OldEntry.Name)
mc.invalidateFunc(oldKey, message.OldEntry)

Loading…
Cancel
Save