Save node on parsing queued signal, look into saving after signals queued as well to mirror(or saving signal queue to a different db key)

gql_cataclysm
noah metz 2023-10-17 15:17:44 -06:00
parent 0eab243659
commit 8a973c38b5
1 changed files with 5 additions and 0 deletions

@ -378,6 +378,11 @@ func nodeLoop(ctx *Context, node *Node) error {
} else {
ctx.Log.Logf("node", "NODE_TIMEOUT(%s) - PROCESSING %+v@%s - NEXT_SIGNAL: %s@%s", node.ID, signal, t, node.NextSignal, node.NextSignal.Time)
}
err = WriteNode(ctx, node)
if err != nil {
ctx.Log.Logf("node", "Node Write Error: %s", err)
}
}
ctx.Log.Logf("node", "NODE_SIGNAL_QUEUE[%s]: %+v", node.ID, node.SignalQueue)