File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ func (s *Supervisor) initialize(
268268 s .config .HAConnections = availableAddrs
269269 }
270270 s .tunnelsProtocolFallback [0 ] = & protocolFallback {
271- retry.BackoffHandler {MaxRetries : s .config .Retries },
271+ retry.BackoffHandler {MaxRetries : s .config .Retries , RetryForever : true },
272272 s .config .ProtocolSelector .Current (),
273273 false ,
274274 }
@@ -290,7 +290,7 @@ func (s *Supervisor) initialize(
290290 // At least one successful connection, so start the rest
291291 for i := 1 ; i < s .config .HAConnections ; i ++ {
292292 s .tunnelsProtocolFallback [i ] = & protocolFallback {
293- retry.BackoffHandler {MaxRetries : s .config .Retries },
293+ retry.BackoffHandler {MaxRetries : s .config .Retries , RetryForever : true },
294294 s .config .ProtocolSelector .Current (),
295295 false ,
296296 }
You can’t perform that action at this time.
0 commit comments