TUN-6343: Fix QUIC->HTTP2 fallback

This commit is contained in:
Nuno Diegues
2022-06-03 10:15:52 +01:00
parent 2b0d704777
commit 4ccef23dbc
2 changed files with 1 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ func NewQUICConnection(
) (*QUICConnection, error) {
session, err := quic.DialAddr(edgeAddr.String(), tlsConfig, quicConfig)
if err != nil {
return nil, EdgeQuicDialError{Cause: err}
return nil, fmt.Errorf("failed to dial to edge: %w", err)
}
datagramMuxer, err := quicpogs.NewDatagramMuxer(session, logger)