mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-27 12:05:26 +00:00
Use valid handler for registered authkey machines
This commit is contained in:
parent
a8a8f01429
commit
50dcb8bb75
11
api.go
11
api.go
@ -130,8 +130,15 @@ func (h *Headscale) RegistrationHandler(ctx *gin.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
if machine.Registered && machine.Expiry.UTC().After(now) {
|
||||
h.handleMachineValidRegistration(ctx, machineKey, req, *machine)
|
||||
// We dont care about expiry time if the method is AuthKey, as we dont set that.
|
||||
if machine.Registered && machine.RegisterMethod == RegisterMethodAuthKey {
|
||||
h.handleMachineValidRegistration(ctx, machineKey, *machine)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
if machine.Registered && !machine.isExpired() {
|
||||
h.handleMachineValidRegistration(ctx, machineKey, *machine)
|
||||
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user