Unverified Commit ec71f29b authored by Lars Gierth's avatar Lars Gierth Committed by GitHub

Merge pull request #26 from ipfs/lgierth-patch-1

Make Datastore.walk() error more specific
parents be477cc0 57c13905
...@@ -432,7 +432,7 @@ func (fs *Datastore) walk(path string, reschan chan query.Result) error { ...@@ -432,7 +432,7 @@ func (fs *Datastore) walk(path string, reschan chan query.Result) error {
key, ok := fs.decode(fn) key, ok := fs.decode(fn)
if !ok { if !ok {
log.Warning("failed to decode entry in flatfs") log.Warningf("failed to decode flatfs entry: %s", fn)
continue continue
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment