go.mod: Bump up quic-go to v0.28.0, fixes for BC breaks (#4867)

This commit is contained in:
Francis Lavoie 2022-07-06 14:14:32 -04:00 committed by GitHub
parent 412dcc07d3
commit 8bac134f26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 13 deletions

View file

@ -357,12 +357,10 @@ func (app *App) Start() error {
return fmt.Errorf("getting HTTP/3 QUIC listener: %v", err)
}
h3srv := &http3.Server{
Server: &http.Server{
Addr: hostport,
Handler: srv,
TLSConfig: tlsCfg,
ErrorLog: serverLogger,
},
Addr: hostport,
Handler: srv,
TLSConfig: tlsCfg,
MaxHeaderBytes: srv.MaxHeaderBytes,
}
//nolint:errcheck
go h3srv.ServeListener(h3ln)