readerAt need to use the right offset
fix https://github.com/chrislusf/seaweedfs/issues/2259
This commit is contained in:
@@ -132,9 +132,10 @@ func NewChunkStreamReader(filerClient filer_pb.FilerClient, chunks []*filer_pb.F
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *ChunkStreamReader) ReadAt(p []byte, off int64) (n int, err error) {
|
func (c *ChunkStreamReader) ReadAt(p []byte, off int64) (n int, err error) {
|
||||||
if err = c.prepareBufferFor(c.logicOffset); err != nil {
|
if err = c.prepareBufferFor(off); err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
c.logicOffset = off
|
||||||
return c.Read(p)
|
return c.Read(p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user