CAICAIIs commented on code in PR #3620:
URL: https://github.com/apache/dubbo-go/pull/3620#discussion_r3776707772
##########
protocol/triple/client.go:
##########
@@ -227,18 +228,22 @@ func newClientManager(url *common.URL) (*clientManager,
error) {
return nil, fmt.Errorf("TRIPLE http3 client must have
TLS config, but TLS config is nil")
}
- // HTTP/3 transport maps keepalive to quic-go's KeepAlivePeriod
and MaxIdleTimeout;
- // All other QUIC knobs keep the quic.Config defaults.
+ var http3Config *global.Http3Config
+ if tripleConf != nil {
+ http3Config = tripleConf.Http3
+ }
+ quicConfig, configErr := http3config.NewQUICConfig(http3Config,
&quic.Config{
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]