We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f81b0ee commit e4278baCopy full SHA for e4278ba
supervisor/supervisor.go
@@ -7,6 +7,7 @@ import (
7
"time"
8
9
"github.com/google/uuid"
10
+ "github.com/lucas-clemente/quic-go"
11
"github.com/rs/zerolog"
12
13
"github.com/cloudflare/cloudflared/connection"
@@ -264,9 +265,9 @@ func (s *Supervisor) startFirstTunnel(
264
265
switch err.(type) {
266
case nil:
267
return
- // try the next address if it was a dialError(network problem) or
268
+ // try the next address if it was a quic.IdleTimeoutError, dialError(network problem) or
269
// dupConnRegisterTunnelError
- case edgediscovery.DialError, connection.DupConnRegisterTunnelError:
270
+ case *quic.IdleTimeoutError, edgediscovery.DialError, connection.DupConnRegisterTunnelError:
271
edgeErrors++
272
default:
273
0 commit comments