1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-16 05:50:41 +02:00

filer: fixup print error message when make new directory

This commit is contained in:
chanyoung 2017-08-15 15:54:12 +09:00
parent dbee816205
commit 52fc476a6f

View file

@ -167,7 +167,7 @@ func (dm *DirectoryManagerInMap) findDirectory(dirPath string) (*DirectoryEntryI
if sub, ok := dir.getChild(parts[i]); ok {
dir = sub
} else {
return dm.Root, fmt.Errorf("Directory %s Not Found", dirPath)
return dm.Root, filer.ErrNotFound
}
}
return dir, nil