mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-02-09 09:17:28 +08:00
changing FindEntry error handling in cassandra store (#6015)
This commit is contained in:
@@ -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{
|
||||||
|
|||||||
Reference in New Issue
Block a user