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

@@ -229,11 +229,9 @@ func (s *Server) Stop() error {
continue
}
wg.Add(1)
go func() {
wg.Go(func() {
s1.ShutdownContext(ctx)
wg.Done()
}()
})
}
s.m.Unlock()
wg.Wait()