diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-05-03 00:24:35 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-05-03 00:24:35 -0700 |
| commit | b30c14b6314c96e0cb0c110e2aa1fc206857a066 (patch) | |
| tree | 88e6fc7e72b1f341a67c8d792dff4732a7c87f80 /weed/filesys/dir_link.go | |
| parent | 47f14775d7d9a47e0d123aa174fb1f1f75bce547 (diff) | |
| download | seaweedfs-b30c14b6314c96e0cb0c110e2aa1fc206857a066.tar.xz seaweedfs-b30c14b6314c96e0cb0c110e2aa1fc206857a066.zip | |
webdav: can read now
Diffstat (limited to 'weed/filesys/dir_link.go')
| -rw-r--r-- | weed/filesys/dir_link.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/dir_link.go b/weed/filesys/dir_link.go index 4f631bc88..92cf04d58 100644 --- a/weed/filesys/dir_link.go +++ b/weed/filesys/dir_link.go @@ -35,7 +35,7 @@ func (dir *Dir) Symlink(ctx context.Context, req *fuse.SymlinkRequest) (fs.Node, }, } - err := dir.wfs.withFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error { + err := dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error { if _, err := client.CreateEntry(ctx, request); err != nil { glog.V(0).Infof("symlink %s/%s: %v", dir.Path, req.NewName, err) return fuse.EIO |
