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

@@ -363,13 +363,11 @@ func TestCloudDNSConcurrentServeDNS(t *testing.T) {
var wg sync.WaitGroup
// Concurrently refresh zones to race with Lookup reads.
wg.Add(1)
go func() {
defer wg.Done()
wg.Go(func() {
for range 50 {
_ = r.updateZones(ctx)
}
}()
})
const workers = 32
const iterations = 200