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, ); }