do not throw error if not found

This commit is contained in:
Chris Lu 2018-12-02 23:20:29 -08:00
parent c6b646e92c
commit 738247d47e

View file

@ -20,6 +20,9 @@ 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)
}