From 28bfb7b7b5f8d7bf79201f61ac2996b0520e94a1 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Fri, 23 Jan 2026 10:42:42 +0000 Subject: [PATCH] Omit error from start-proxy Action --- lib/start-proxy-action.js | 5 +++-- src/start-proxy-action.ts | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/start-proxy-action.js b/lib/start-proxy-action.js index 7a3f66e74..93978c289 100644 --- a/lib/start-proxy-action.js +++ b/lib/start-proxy-action.js @@ -104811,7 +104811,8 @@ async function run(startedAt) { languages: language && [language] }, await checkDiskUsage(logger), - logger + logger, + "Error from start-proxy Action omitted" ); if (errorStatusReportBase !== void 0) { await sendStatusReport(errorStatusReportBase); @@ -104828,7 +104829,7 @@ async function runWrapper() { await sendUnhandledErrorStatusReport( "start-proxy" /* StartProxy */, startedAt, - error3, + new Error("Error from start-proxy Action omitted"), logger ); } diff --git a/src/start-proxy-action.ts b/src/start-proxy-action.ts index e95643bb0..b682d07d3 100644 --- a/src/start-proxy-action.ts +++ b/src/start-proxy-action.ts @@ -195,6 +195,7 @@ async function run(startedAt: Date) { }, await util.checkDiskUsage(logger), logger, + "Error from start-proxy Action omitted", ); if (errorStatusReportBase !== undefined) { await sendStatusReport(errorStatusReportBase); @@ -213,7 +214,7 @@ async function runWrapper() { await sendUnhandledErrorStatusReport( ActionName.StartProxy, startedAt, - error, + new Error("Error from start-proxy Action omitted"), logger, ); }