Browse Source

readerAt need to use the right offset

fix https://github.com/chrislusf/seaweedfs/issues/2259
pull/2274/head
Chris Lu 3 years ago
parent
commit
8f7d2d317f
  1. 3
      weed/filer/stream.go

3
weed/filer/stream.go

@ -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) {
if err = c.prepareBufferFor(c.logicOffset); err != nil {
if err = c.prepareBufferFor(off); err != nil {
return
}
c.logicOffset = off
return c.Read(p)
}

Loading…
Cancel
Save