chore: bump minimum Go version to 1.25 (#7788)

This commit is contained in:
Ville Vesilehto
2026-02-16 15:28:30 +02:00
committed by GitHub
parent b1080a2934
commit 6fd38dca06
9 changed files with 26 additions and 50 deletions

View File

@@ -102,12 +102,10 @@ func TestShardEvictParallel(t *testing.T) {
start := make(chan struct{})
var wg sync.WaitGroup
for range shardSize {
wg.Add(1)
go func() {
wg.Go(func() {
<-start
s.Evict()
wg.Done()
}()
})
}
close(start) // start evicting in parallel
wg.Wait()