Add a sleep to reduce the impact of #727
This commit is contained in:
parent
8e56d8b425
commit
e1e3feb6a8
1 changed files with 9 additions and 2 deletions
11
api.go
11
api.go
|
@ -21,6 +21,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
registrationHoldoff = time.Second * 5 // TODO(juan): remove this once https://github.com/juanfont/headscale/issues/727 is fixed
|
||||||
reservedResponseHeaderSize = 4
|
reservedResponseHeaderSize = 4
|
||||||
RegisterMethodAuthKey = "authkey"
|
RegisterMethodAuthKey = "authkey"
|
||||||
RegisterMethodOIDC = "oidc"
|
RegisterMethodOIDC = "oidc"
|
||||||
|
@ -237,9 +238,15 @@ func (h *Headscale) RegistrationHandler(
|
||||||
Str("Followup", registerRequest.Followup).
|
Str("Followup", registerRequest.Followup).
|
||||||
Msg("Machine is waiting for interactive login")
|
Msg("Machine is waiting for interactive login")
|
||||||
|
|
||||||
h.handleMachineRegistrationNew(writer, req, machineKey, registerRequest)
|
ticker := time.NewTicker(registrationHoldoff)
|
||||||
|
select {
|
||||||
|
case <-req.Context().Done():
|
||||||
|
return
|
||||||
|
case <-ticker.C:
|
||||||
|
h.handleMachineRegistrationNew(writer, req, machineKey, registerRequest)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue