[filer] avoid 500 if table doesn't exist (#6075)

This commit is contained in:
Konstantin Lebedev 2024-09-27 19:15:54 +05:00 committed by GitHub
parent 3ef716409e
commit bae93e611d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -164,6 +164,9 @@ func (fsw *FilerStoreWrapper) FindEntry(ctx context.Context, fp util.FullPath) (
entry, err = actualStore.FindEntry(ctx, fp)
// glog.V(4).Infof("FindEntry %s: %v", fp, err)
if err != nil {
if fsw.CanDropWholeBucket() && strings.Contains(err.Error(), "Table") && strings.Contains(err.Error(), "doesn't exist") {
err = filer_pb.ErrNotFound
}
return nil, err
}