feat(db): add SourceNode column to SiteCalls

This commit is contained in:
Joseph Doherty
2026-05-23 16:22:18 -04:00
parent 16b685b96b
commit 1a77bc5f38
6 changed files with 1784 additions and 5 deletions

View File

@@ -173,7 +173,7 @@ WHERE TrackedOperationId = {idText}
// NotificationOutboxRepository.QueryAsync applies NotificationOutboxFilter.StuckCutoff.
FormattableString sql = $@"
SELECT TOP ({paging.PageSize})
TrackedOperationId, Channel, Target, SourceSite, Status, RetryCount,
TrackedOperationId, Channel, Target, SourceSite, SourceNode, Status, RetryCount,
LastError, HttpStatus, CreatedAtUtc, UpdatedAtUtc, TerminalAtUtc, IngestedAtUtc
FROM dbo.SiteCalls
WHERE ({filter.Channel} IS NULL OR Channel = {filter.Channel})