aboutsummaryrefslogtreecommitdiff
path: root/weed/util/chunk_cache/on_disk_cache_layer.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-09-25 09:35:16 -0700
committerchrislu <chris.lu@gmail.com>2023-09-25 09:35:16 -0700
commit645ae8c57bc449cbb298e90d1ad19f7d2153aea0 (patch)
tree08458e352ea27e8e673a3670269ec84f04512d77 /weed/util/chunk_cache/on_disk_cache_layer.go
parent3d07895518b2b6e816518be0a2355c1f0a98ff15 (diff)
downloadseaweedfs-645ae8c57bc449cbb298e90d1ad19f7d2153aea0.tar.xz
seaweedfs-645ae8c57bc449cbb298e90d1ad19f7d2153aea0.zip
Revert "Revert "Merge branch 'master' of https://github.com/seaweedfs/seaweedfs""
This reverts commit 8cb42c39
Diffstat (limited to 'weed/util/chunk_cache/on_disk_cache_layer.go')
-rw-r--r--weed/util/chunk_cache/on_disk_cache_layer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/util/chunk_cache/on_disk_cache_layer.go b/weed/util/chunk_cache/on_disk_cache_layer.go
index 9f5d9ff9a..b89b4aab8 100644
--- a/weed/util/chunk_cache/on_disk_cache_layer.go
+++ b/weed/util/chunk_cache/on_disk_cache_layer.go
@@ -32,8 +32,8 @@ func NewOnDiskCacheLayer(dir, namePrefix string, diskSize int64, segmentCount in
}
// keep newest cache to the front
- slices.SortFunc(c.diskCaches, func(a, b *ChunkCacheVolume) bool {
- return a.lastModTime.After(b.lastModTime)
+ slices.SortFunc(c.diskCaches, func(a, b *ChunkCacheVolume) int {
+ return b.lastModTime.Compare(a.lastModTime)
})
return c
}