mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-18 04:37:52 +08:00
complement weed mount
This commit is contained in:
parent
7f85e15990
commit
3a67b6ddc1
@ -107,8 +107,6 @@ func (dir *Dir) ReadDirAll(ctx context.Context) ([]fuse.Dirent, error) {
|
||||
return ret, nil
|
||||
}
|
||||
|
||||
const greeting = "hello, world\n"
|
||||
|
||||
type File struct {
|
||||
Id uint64
|
||||
// FileId filer.FileId
|
||||
@ -117,11 +115,6 @@ type File struct {
|
||||
|
||||
func (file *File) Attr(context context.Context, attr *fuse.Attr) error {
|
||||
attr.Inode = file.Id
|
||||
attr.Mode = 0444
|
||||
attr.Size = uint64(len(greeting))
|
||||
attr.Mode = 0000
|
||||
return nil
|
||||
}
|
||||
|
||||
func (file *File) ReadAll(ctx context.Context) ([]byte, error) {
|
||||
return []byte(greeting), nil
|
||||
}
|
||||
|
@ -27,11 +27,7 @@ func (fs *FilerServer) apiHandler(w http.ResponseWriter, r *http.Request) {
|
||||
writeJsonQuiet(w, r, http.StatusOK, res)
|
||||
case "listFiles":
|
||||
res := filer.ListFilesResult{}
|
||||
limit := 1
|
||||
if len(apiRequest.FileName) == 0 {
|
||||
limit = 100
|
||||
}
|
||||
res.Files, err = fs.filer.ListFiles(apiRequest.Directory, apiRequest.FileName, limit)
|
||||
res.Files, err = fs.filer.ListFiles(apiRequest.Directory, apiRequest.FileName, 100)
|
||||
if err != nil {
|
||||
res.Error = err.Error()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user