diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-12-22 11:11:57 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-12-22 11:11:57 -0800 |
| commit | d3839fe2793eb2729785d0534d4f1643541b0836 (patch) | |
| tree | f9117f2029eb384ca82db155c02a5e10c8b50f73 | |
| parent | 5333f2984a47e8712e8fc616a1a22ab297e1926f (diff) | |
| download | seaweedfs-d3839fe2793eb2729785d0534d4f1643541b0836.tar.xz seaweedfs-d3839fe2793eb2729785d0534d4f1643541b0836.zip | |
go fmt
| -rw-r--r-- | weed/filesys/dir_rename.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/weed/filesys/dir_rename.go b/weed/filesys/dir_rename.go index 61e620148..348f144a6 100644 --- a/weed/filesys/dir_rename.go +++ b/weed/filesys/dir_rename.go @@ -4,10 +4,11 @@ import ( "bazil.org/fuse" "bazil.org/fuse/fs" "context" + "math" + "path/filepath" + "github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/pb/filer_pb" - "path/filepath" - "math" ) func (dir *Dir) Rename(ctx context.Context, req *fuse.RenameRequest, newDirectory fs.Node) error { |
