1
0
mirror of https://github.com/juanfont/headscale.git synced 2025-02-01 00:20:14 +01:00

Call processMachineRoutes when a new Map is received

This commit is contained in:
Juan Font 2022-11-24 15:59:37 +00:00 committed by Kristoffer Dalby
parent fba77de4eb
commit ac8bff716d

View File

@ -32,6 +32,15 @@ func (h *Headscale) handlePollCommon(
machine.DiscoKey = DiscoPublicKeyStripPrefix(mapRequest.DiscoKey)
now := time.Now().UTC()
err := h.processMachineRoutes(machine)
if err != nil {
log.Error().
Caller().
Err(err).
Str("machine", machine.Hostname).
Msg("Error processing machine routes")
}
// update ACLRules with peer informations (to update server tags if necessary)
if h.aclPolicy != nil {
err := h.UpdateACLRules()