Skip to content

Commit

Permalink
dial-new-client-per-rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
oncilla committed Sep 5, 2023
1 parent 3234aae commit 2db856e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/snet/squic/net.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,7 @@ func (d ConnDialer) Dial(ctx context.Context, dst net.Addr) (net.Conn, error) {
}
var transportErr *quic.TransportError
if !errors.As(err, &transportErr) || transportErr.ErrorCode != quic.ConnectionRefused {
log.Info("Connection refused", "err", err, "transport", transportErr)
return nil, serrors.WrapStr("dialing QUIC/SCION", err)
}

Expand Down

0 comments on commit 2db856e

Please sign in to comment.