This commit is contained in:
Chris Lu
2020-10-05 14:06:18 -07:00
parent 8f8e9ddbde
commit 36492c47ec

View File

@@ -159,13 +159,11 @@ func (c *ChunkReadAt) readFromWholeChunkData(chunkView *ChunkView, nextChunkView
c.lastChunkData = chunkData c.lastChunkData = chunkData
c.lastChunkFileId = chunkView.FileId c.lastChunkFileId = chunkView.FileId
go func() { for _, nextChunkView := range nextChunkViews {
for _, nextChunkView := range nextChunkViews { if c.chunkCache != nil && nextChunkView != nil {
if c.chunkCache != nil && nextChunkView != nil { go c.readOneWholeChunk(nextChunkView)
c.readOneWholeChunk(nextChunkView)
}
} }
}() }
return return
} }