Browse Source

filer: fixup print error message when make new directory

pull/552/head
chanyoung 8 years ago
parent
commit
52fc476a6f
  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