mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 17:03:06 +00:00
fix: ignore emptyPolicy errors for db insertion
This commit is contained in:
parent
209d003832
commit
16f9691e80
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ func (h *Headscale) UpdateMachine(machine *Machine) error {
|
||||||
// SetTags takes a Machine struct pointer and update the forced tags.
|
// SetTags takes a Machine struct pointer and update the forced tags.
|
||||||
func (h *Headscale) SetTags(machine *Machine, tags []string) error {
|
func (h *Headscale) SetTags(machine *Machine, tags []string) error {
|
||||||
machine.ForcedTags = tags
|
machine.ForcedTags = tags
|
||||||
if err := h.UpdateACLRules(); err != nil {
|
if err := h.UpdateACLRules(); !errors.Is(err, errEmptyPolicy) {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
h.setLastStateChangeToNow(machine.Namespace.Name)
|
h.setLastStateChangeToNow(machine.Namespace.Name)
|
||||||
|
|
Loading…
Reference in a new issue