Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/services/workflows/syncer/workflow_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,13 +676,13 @@ func (w *workflowRegistry) syncUsingReconciliationStrategy(ctx context.Context,
w.lggr.Errorw("failed to get registry state", "err", err)
continue
}
w.lggr.Debugw("preparing events to reconcile", "numWorkflowMetadata", len(workflowMetadata), "blockHeight", head.Height, "numPendingEvents", len(pendingEvents))
w.lggr.Debugw("preparing events to reconcile", "numWorkflowMetadata", len(workflowMetadata), "blockHeight", head.Height, "numPendingEvents", len(pendingEvents), "metadata", workflowMetadata)
events, err := w.generateReconciliationEvents(ctx, pendingEvents, workflowMetadata, don.ID)
if err != nil {
w.lggr.Errorw("failed to generate reconciliation events", "err", err)
continue
}
w.lggr.Debugw("generated events to reconcile", "num", len(events))
w.lggr.Debugw("generated events to reconcile", "num", len(events), "events", events)

pendingEvents = map[string]*reconciliationEvent{}

Expand Down
Loading