Fixed linting

This commit is contained in:
Juan Font 2021-08-12 21:57:20 +02:00
parent ab61c87701
commit 8eb7d47072
2 changed files with 8 additions and 2 deletions

5
app.go
View File

@ -135,7 +135,10 @@ func (h *Headscale) expireEphemeralNodesWorker() {
if err != nil { if err != nil {
log.Error().Err(err).Str("machine", m.Name).Msg("🤮 Cannot delete ephemeral machine from the database") log.Error().Err(err).Str("machine", m.Name).Msg("🤮 Cannot delete ephemeral machine from the database")
} }
h.notifyChangesToPeers(&m) err = h.notifyChangesToPeers(&m)
if err != nil {
continue
}
} }
} }
} }

View File

@ -169,7 +169,10 @@ func (h *Headscale) checkForNamespacesPendingUpdates() {
continue continue
} }
for _, m := range *machines { for _, m := range *machines {
h.notifyChangesToPeers(&m) err = h.notifyChangesToPeers(&m)
if err != nil {
continue
}
} }
} }
newV, err := h.getValue("namespaces_pending_updates") newV, err := h.getValue("namespaces_pending_updates")