changing FindEntry error handling in cassandra store (#6015)

This commit is contained in:
Aleksey Kosov 2024-09-13 16:53:04 +03:00 committed by GitHub
parent 4f2bdebe49
commit 7340c62c47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@ package cassandra
import (
"context"
"errors"
"fmt"
"github.com/gocql/gocql"
"time"
@ -129,13 +130,10 @@ func (store *CassandraStore) FindEntry(ctx context.Context, fullpath util.FullPa
if err := store.session.Query(
"SELECT meta FROM filemeta WHERE directory=? AND name=?",
dir, name).Scan(&data); err != nil {
if err != gocql.ErrNotFound {
if errors.Is(err, gocql.ErrNotFound) {
return nil, filer_pb.ErrNotFound
}
}
if len(data) == 0 {
return nil, filer_pb.ErrNotFound
return nil, err
}
entry = &filer.Entry{