1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

Add a sleep to reduce the impact of #727

This commit is contained in:
Juan Font Alonso 2022-08-11 13:37:25 +02:00
parent 8e56d8b425
commit e1e3feb6a8

7
api.go
View File

@ -21,6 +21,7 @@ import (
)
const (
registrationHoldoff = time.Second * 5 // TODO(juan): remove this once https://github.com/juanfont/headscale/issues/727 is fixed
reservedResponseHeaderSize = 4
RegisterMethodAuthKey = "authkey"
RegisterMethodOIDC = "oidc"
@ -237,11 +238,17 @@ func (h *Headscale) RegistrationHandler(
Str("Followup", registerRequest.Followup).
Msg("Machine is waiting for interactive login")
ticker := time.NewTicker(registrationHoldoff)
select {
case <-req.Context().Done():
return
case <-ticker.C:
h.handleMachineRegistrationNew(writer, req, machineKey, registerRequest)
return
}
}
}
log.Info().
Caller().