mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
[mount] Fix read file-data in entry.content (#4207)
This commit is contained in:
parent
896c6b8d1a
commit
79af6b41d4
|
@ -53,7 +53,7 @@ func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, int64, e
|
||||||
return 0, 0, io.EOF
|
return 0, 0, io.EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
if offset+int64(len(buff)) <= int64(len(entry.Content)) {
|
if offset < int64(len(entry.Content)) {
|
||||||
totalRead := copy(buff, entry.Content[offset:])
|
totalRead := copy(buff, entry.Content[offset:])
|
||||||
glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fileFullPath, offset, offset+int64(totalRead), totalRead)
|
glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fileFullPath, offset, offset+int64(totalRead), totalRead)
|
||||||
return int64(totalRead), 0, nil
|
return int64(totalRead), 0, nil
|
||||||
|
|
Loading…
Reference in a new issue