From c241178a4c04935a4907b40a83a3fbf953debd5b Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Wed, 16 Jun 2021 12:09:56 +0200 Subject: [PATCH] use entry.checks --- packages/health-check/src/run.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/health-check/src/run.js b/packages/health-check/src/run.js index 121f3cb7..b1ccaaac 100644 --- a/packages/health-check/src/run.js +++ b/packages/health-check/src/run.js @@ -40,8 +40,8 @@ require("yargs/yargs")(process.argv.slice(2)).command( .write(); // exit with code 1 if any of the checks report failure - if (checks.some(({ up }) => !up)) { - console.log(checks); + if (entry.checks.some(({ up }) => !up)) { + console.log(entry.checks); process.exit(1); } }