Browse Source

Merge pull request #552 from chanyoung/filer-fixWrongErrorLog

filer: fixup print error message when make new directory
pull/555/head
Chris Lu 7 years ago
committed by GitHub
parent
commit
b3f714612d
  1. 2
      weed/filer/embedded_filer/directory_in_map.go

2
weed/filer/embedded_filer/directory_in_map.go

@ -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

Loading…
Cancel
Save