revert prev

This commit is contained in:
Chris Lu 2018-12-02 23:25:37 -08:00
parent 738247d47e
commit 7ace0efd65

View file

@ -20,9 +20,6 @@ import (
func (fs *FilerServer) LookupDirectoryEntry(ctx context.Context, req *filer_pb.LookupDirectoryEntryRequest) (*filer_pb.LookupDirectoryEntryResponse, error) {
entry, err := fs.filer.FindEntry(filer2.FullPath(filepath.Join(req.Directory, req.Name)))
if err == filer2.ErrNotFound {
return nil, nil
}
if err != nil {
return nil, fmt.Errorf("%s not found under %s: %v", req.Name, req.Directory, err)
}