Browse Source

adjust

pull/1513/head
Chris Lu 5 years ago
parent
commit
36492c47ec
  1. 10
      weed/filer/reader_at.go

10
weed/filer/reader_at.go

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

Loading…
Cancel
Save