fix filer.remote.sync on a S3 cloud mount
fix https://github.com/seaweedfs/seaweedfs/issues/4175
This commit is contained in:
@@ -300,6 +300,9 @@ func (c *ChunkStreamReader) prepareBufferFor(offset int64) (err error) {
|
|||||||
if c.bufferOffset <= offset && offset < c.bufferOffset+int64(len(c.buffer)) {
|
if c.bufferOffset <= offset && offset < c.bufferOffset+int64(len(c.buffer)) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
if c.chunkView == nil {
|
||||||
|
return io.EOF
|
||||||
|
}
|
||||||
|
|
||||||
// fmt.Printf("fetch for offset %d\n", offset)
|
// fmt.Printf("fetch for offset %d\n", offset)
|
||||||
c.chunkView = c.chunkView.Next
|
c.chunkView = c.chunkView.Next
|
||||||
|
|||||||
Reference in New Issue
Block a user