diff options
Diffstat (limited to 'weed/filer/filer.go')
| -rw-r--r-- | weed/filer/filer.go | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/weed/filer/filer.go b/weed/filer/filer.go index 8319212f1..800dd35dc 100644 --- a/weed/filer/filer.go +++ b/weed/filer/filer.go @@ -18,7 +18,7 @@ import ( const ( LogFlushInterval = time.Minute - PaginationSize = 1024 * 256 + PaginationSize = 1024 FilerStoreId = "filer.store.id" ) @@ -251,21 +251,23 @@ func (f *Filer) UpdateEntry(ctx context.Context, oldEntry, entry *Entry) (err er return f.Store.UpdateEntry(ctx, entry) } -func (f *Filer) FindEntry(ctx context.Context, p util.FullPath) (entry *Entry, err error) { +var ( + Root = &Entry{ + FullPath: "/", + Attr: Attr{ + Mtime: time.Now(), + Crtime: time.Now(), + Mode: os.ModeDir | 0755, + Uid: OS_UID, + Gid: OS_GID, + }, + } +) - now := time.Now() +func (f *Filer) FindEntry(ctx context.Context, p util.FullPath) (entry *Entry, err error) { if string(p) == "/" { - return &Entry{ - FullPath: p, - Attr: Attr{ - Mtime: now, - Crtime: now, - Mode: os.ModeDir | 0755, - Uid: OS_UID, - Gid: OS_GID, - }, - }, nil + return Root, nil } entry, err = f.Store.FindEntry(ctx, p) if entry != nil && entry.TtlSec > 0 { |
