This commit is contained in:
Chris Lu 2020-03-27 00:30:39 -07:00
parent 2286eda575
commit 2f5ed29c37
2 changed files with 1 additions and 3 deletions

View file

@ -108,7 +108,6 @@ func (c *ChunkStreamReader) Read(p []byte) (n int, err error) {
return 0, io.EOF
}
chunkView := c.chunkViews[c.chunkIndex]
println("fetch1")
c.fetchChunkToBuffer(chunkView)
c.chunkIndex++
}

View file

@ -2,7 +2,6 @@ package filesys
import (
"context"
"fmt"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
@ -43,7 +42,7 @@ func (dir *Dir) Rename(ctx context.Context, req *fuse.RenameRequest, newDirector
dir.wfs.cacheDelete(newPath)
dir.wfs.cacheDelete(oldPath)
fmt.Printf("rename path: %v => %v\n", oldPath, newPath)
// fmt.Printf("rename path: %v => %v\n", oldPath, newPath)
dir.wfs.fsNodeCache.Move(oldPath, newPath)
}