trying to compile

This commit is contained in:
Chris Lu
2019-10-23 01:27:08 -07:00
parent 23240efa63
commit c0776aa40f
3 changed files with 167 additions and 10 deletions

View File

@@ -104,7 +104,7 @@ func (store *TikvStore) FindEntry(ctx context.Context, fullpath filer2.FullPath)
dir, name := fullpath.DirAndName()
key := genKey(dir, name)
data, err := store.getTx(ctx).Get(key)
data, err := store.getTx(ctx).Get(ctx, key)
if err == kv.ErrNotExist {
return nil, filer2.ErrNotFound