juanfont/headscale · error
updating policy manager after node save: %w
Error message
updating policy manager after node save: %w
What it means
Error "updating policy manager after node save: %w" thrown in juanfont/headscale.
Source
Thrown at hscontrol/state/state.go:574
return types.NodeView{}, fmt.Errorf("saving node: %w", err)
}
return fresh, nil
}
// persistNodeToDB saves the given node state to the database and refreshes the
// policy manager. The exact row written comes from [NodeStore]; see
// [State.persistNodeRowToDB].
func (s *State) persistNodeToDB(node types.NodeView) (types.NodeView, change.Change, error) {
fresh, err := s.persistNodeRowToDB(node)
if err != nil {
return types.NodeView{}, change.Change{}, err
}
// Check if policy manager needs updating
c, err := s.updatePolicyManagerNodes()
if err != nil {
return fresh, change.Change{}, fmt.Errorf("updating policy manager after node save: %w", err)
}
if c.IsEmpty() {
c = change.NodeAdded(node.ID())
}
return fresh, c, nil
}
func (s *State) SaveNode(node types.NodeView) (types.NodeView, change.Change, error) {
// Update [NodeStore] first
nodePtr := node.AsStruct()
resultNode := s.nodeStore.PutNode(*nodePtr)
// Then save to database using the result from [NodeStore.PutNode]
return s.persistNodeToDB(resultNode)
}View on GitHub (pinned to 565fd254d0)
Solutions
- Inspect the wrapped error for the underlying cause and correct the failing condition (updating policy manager after node save); retry the operation after fixing the input, configuration, or environment.
Example fix
Inspect the wrapped error for the underlying cause and correct the failing condition (updating policy manager after node save); retry the operation after fixing the input, configuration, or environment.
When it happens
Trigger: Thrown at hscontrol/state/state.go:574 when the library encounters an invalid state.
Common situations: Refreshing the policy manager after saving a node failed. Validate the policy resolves with the node's current tags and user.
AI-assisted analysis of juanfont/headscale@565fd254d0 (2026-08-15).
Data as JSON: /api/errors/984792239b17eb52.
Report an issue: GitHub.