Fixed panic when sending keep alives to a disconnected node

This commit is contained in:
Juan Font Alonso 2021-05-15 18:12:22 +02:00
parent 93a9284d84
commit 374a6eef7e
1 changed files with 2 additions and 0 deletions

2
api.go
View File

@ -279,12 +279,14 @@ func (h *Headscale) keepAlive(cancel chan []byte, pollData chan []byte, mKey wgc
return
default:
h.pollMu.Lock()
data, err := h.getMapKeepAliveResponse(mKey, req, m)
if err != nil {
log.Printf("Error generating the keep alive msg: %s", err)
return
}
pollData <- *data
h.pollMu.Unlock()
time.Sleep(60 * time.Second)
}
}