mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-19 04:59:56 +00:00
Fix reference check
This commit is contained in:
@@ -324,6 +324,7 @@ func (conn *Conn) reconnectLoopWithRetry() {
|
||||
case <-time.After(3 * time.Second):
|
||||
}
|
||||
|
||||
L:
|
||||
for {
|
||||
bo := backoff.WithContext(&backoff.ExponentialBackOff{
|
||||
InitialInterval: 800 * time.Millisecond,
|
||||
@@ -340,7 +341,6 @@ func (conn *Conn) reconnectLoopWithRetry() {
|
||||
|
||||
<-ticker.C // consume the initial tick what is happening right after the ticker has been created
|
||||
|
||||
L:
|
||||
for {
|
||||
select {
|
||||
case t := <-ticker.C:
|
||||
|
||||
Reference in New Issue
Block a user