Skip to content

Commit 28bfb7b

Browse files
committed
Omit error from start-proxy Action
1 parent 91f3460 commit 28bfb7b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/start-proxy-action.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/start-proxy-action.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ async function run(startedAt: Date) {
195195
},
196196
await util.checkDiskUsage(logger),
197197
logger,
198+
"Error from start-proxy Action omitted",
198199
);
199200
if (errorStatusReportBase !== undefined) {
200201
await sendStatusReport(errorStatusReportBase);
@@ -213,7 +214,7 @@ async function runWrapper() {
213214
await sendUnhandledErrorStatusReport(
214215
ActionName.StartProxy,
215216
startedAt,
216-
error,
217+
new Error("Error from start-proxy Action omitted"),
217218
logger,
218219
);
219220
}

0 commit comments

Comments
 (0)