From 1ba0ff38d216167f07bbb4dde3990fc6c6ea4a02 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Mon, 19 Jan 2026 09:12:29 -0800 Subject: [PATCH] Reduce error handling on failed email renders --- apps/backend/src/lib/email-queue-step.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/backend/src/lib/email-queue-step.tsx b/apps/backend/src/lib/email-queue-step.tsx index 5875a62d8..15a13bb8a 100644 --- a/apps/backend/src/lib/email-queue-step.tsx +++ b/apps/backend/src/lib/email-queue-step.tsx @@ -403,7 +403,6 @@ async function renderTenancyEmails(workerId: string, tenancyId: string, group: E const result = await renderEmailsForTenancyBatched(requests); if (result.status === "error") { - captureError("email-rendering-failed", result.error); for (const row of rowsWithKnownCategory) { await markRenderError(row, result.error); } @@ -423,7 +422,6 @@ async function renderTenancyEmails(workerId: string, tenancyId: string, group: E const firstPassResult = await renderEmailsForTenancyBatched(firstPassRequests); if (firstPassResult.status === "error") { - captureError("email-rendering-failed", firstPassResult.error); for (const row of rowsWithUnknownCategory) { await markRenderError(row, firstPassResult.error); } @@ -462,7 +460,6 @@ async function renderTenancyEmails(workerId: string, tenancyId: string, group: E const secondPassResult = await renderEmailsForTenancyBatched(secondPassRequests); if (secondPassResult.status === "error") { - captureError("email-rendering-failed-second-pass", secondPassResult.error); for (const { row } of needsSecondPass) { await markRenderError(row, secondPassResult.error); }