docs(meta_cache): readability fixes (#3691)

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

Signed-off-by: Ryan Russell <git@ryanrussell.org>
This commit is contained in:
Ryan Russell 2022-09-15 04:04:57 -05:00 committed by GitHub
parent 92658b05a8
commit d65bdeef08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

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

View file

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