diff --git a/weed/util/chunk_cache/chunk_cache.go b/weed/util/chunk_cache/chunk_cache.go index 48e4bfb0d..9f2a0518f 100644 --- a/weed/util/chunk_cache/chunk_cache.go +++ b/weed/util/chunk_cache/chunk_cache.go @@ -90,9 +90,7 @@ func (c *ChunkCache) SetChunk(fileId string, data []byte) { c.Lock() defer c.Unlock() - if existingData := c.doGetChunk(fileId); len(existingData)==0{ - c.doSetChunk(fileId, data) - } + c.doSetChunk(fileId, data) } func (c *ChunkCache) doSetChunk(fileId string, data []byte) {