Omit error from start-proxy Action

This commit is contained in:
Henry Mercer
2026-01-23 10:42:42 +00:00
parent 91f3460006
commit 28bfb7b7b5
2 changed files with 5 additions and 3 deletions
+3 -2
View File
@@ -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
);
}