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

View File

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