Updated worker to show upsert issue messages.
All checks were successful
ci / build-test (push) Successful in 2m36s
ci / publish-image (push) Has been skipped

This commit is contained in:
2026-03-07 00:03:18 -05:00
parent 1d40013837
commit 1e01edf1b7
7 changed files with 53 additions and 11 deletions

View File

@@ -87,6 +87,10 @@ public class VoiceWorkUpdater(AppDbContext dbContext, ITimeProvider timeProvider
Results: productIds.ToDictionary(
productId => productId,
productId => new VoiceWorkUpsertResult()
{
ProductId = productId,
Title = ingests.First(x => x.ProductId == productId).Title
}
)
);