mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
Make error string more specific
This commit is contained in:
parent
a172720531
commit
a229b0f30d
1 changed files with 1 additions and 1 deletions
2
index.go
2
index.go
|
|
@ -415,7 +415,7 @@ func (i *Index) createFrame(name string, opt FrameOptions) (*Frame, error) {
|
|||
|
||||
if err := f.saveMeta(); err != nil {
|
||||
f.Close()
|
||||
return nil, errors.Wrap(err, "saving")
|
||||
return nil, errors.Wrap(err, "saving meta")
|
||||
}
|
||||
|
||||
// Add to index's frame lookup.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue