mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix cassandra creation problem
fix https://github.com/chrislusf/seaweedfs/issues/986
This commit is contained in:
parent
fe4eb6bffa
commit
308102f023
|
@ -85,7 +85,7 @@ func (store *CassandraStore) FindEntry(ctx context.Context, fullpath filer2.Full
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(data) == 0 {
|
if len(data) == 0 {
|
||||||
return nil, fmt.Errorf("not found: %s", fullpath)
|
return nil, filer2.ErrNotFound
|
||||||
}
|
}
|
||||||
|
|
||||||
entry = &filer2.Entry{
|
entry = &filer2.Entry{
|
||||||
|
|
Loading…
Reference in a new issue