mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix a bug on error reporting
This commit is contained in:
parent
1f030af06f
commit
b23883b3b6
|
@ -54,7 +54,7 @@ func (store *UniversalRedisStore) FindEntry(fullpath filer2.FullPath) (entry *fi
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("get %s : %v", entry.FullPath, err)
|
return nil, fmt.Errorf("get %s : %v", fullpath, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
entry = &filer2.Entry{
|
entry = &filer2.Entry{
|
||||||
|
|
Loading…
Reference in a new issue