fix: apply fmt and fix missing name changes

This commit is contained in:
Adrien Raffin-Caboisse 2022-03-07 23:20:30 +01:00
parent 2b68c90778
commit 41efe98953
No known key found for this signature in database
GPG Key ID: 7FB60532DEBEAD6A
3 changed files with 3 additions and 2 deletions

View File

@ -444,7 +444,7 @@ func expandGroup(
errInvalidGroup,
)
}
grp, err := NormalizeName(group, stripEmailDomain)
grp, err := NormalizeToFQDNRules(group, stripEmailDomain)
if err != nil {
return []string{}, fmt.Errorf(
"failed to normalize group %q, err: %w",

1
api.go
View File

@ -144,6 +144,7 @@ func (h *Headscale) RegistrationHandler(ctx *gin.Context) {
Str("func", "RegistrationHandler").
Str("hostinfo.name", req.Hostinfo.Hostname).
Err(err)
return
}

View File

@ -83,7 +83,7 @@ func (h *Headscale) PollNetMapHandler(ctx *gin.Context) {
Str("machine", machine.Name).
Msg("Found machine in database")
hname, err := NormalizeName(
hname, err := NormalizeToFQDNRules(
req.Hostinfo.Hostname,
h.cfg.OIDC.StripEmaildomain,
)