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

@@ -48,10 +48,8 @@ func xfr(state request.Request, truncate bool) {
}()
wg := new(sync.WaitGroup)
wg.Add(1)
go func() {
wg.Go(func() {
tr.Out(state.W, state.Req, ch)
wg.Done()
}()
})
wg.Wait()
}