1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-26 13:20:57 +02:00

mount: set name when mount path equals mount folder

fix https://github.com/chrislusf/seaweedfs/issues/2275#issuecomment-903255876
This commit is contained in:
Chris Lu 2021-08-22 04:59:09 -07:00
parent 2158d4fe4d
commit 3b2c39f1be

View file

@ -116,7 +116,7 @@ func (wfs *WFS) maybeLoadEntry(dir, name string) (entry *filer_pb.Entry, err err
// return a valid entry for the mount root
if string(fullpath) == wfs.option.FilerMountRootPath {
return &filer_pb.Entry{
Name: wfs.option.FilerMountRootPath,
Name: name,
IsDirectory: true,
Attributes: &filer_pb.FuseAttributes{
Mtime: wfs.option.MountMtime.Unix(),