Merge pull request #552 from chanyoung/filer-fixWrongErrorLog

filer: fixup print error message when make new directory
This commit is contained in:
Chris Lu 2017-08-15 00:19:19 -07:00 committed by GitHub
commit b3f714612d

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