Fixed minor linting things

This commit is contained in:
Juan Font Alonso 2022-08-19 14:27:40 +02:00
parent 43ad0d4416
commit b6e3cd81c6
2 changed files with 0 additions and 5 deletions

View File

@ -100,11 +100,9 @@ func (h *Headscale) handleRegisterCommon(
registerRequest tailcfg.RegisterRequest,
machineKey key.MachinePublic,
) {
now := time.Now().UTC()
machine, err := h.GetMachineByAnyNodeKey(registerRequest.NodeKey, registerRequest.OldNodeKey)
if errors.Is(err, gorm.ErrRecordNotFound) {
// If the machine has AuthKey set, handle registration via PreAuthKeys
if registerRequest.Auth.AuthKey != "" {
h.handleAuthKeyCommon(writer, req, registerRequest, machineKey)
@ -242,7 +240,6 @@ func (h *Headscale) handleRegisterCommon(
return
}
}
// handleAuthKeyCommon contains the logic to manage auth key client registration
@ -676,7 +673,6 @@ func (h *Headscale) handleMachineRefreshKeyCommon(
Str("old_node_key", registerRequest.OldNodeKey.ShortString()).
Str("machine", machine.Hostname).
Msg("Machine successfully refreshed")
}
func (h *Headscale) handleMachineExpiredCommon(

View File

@ -55,5 +55,4 @@ func (h *Headscale) RegistrationHandler(
}
h.handleRegisterCommon(writer, req, registerRequest, machineKey)
}