From 559a4d831f32e712d1150cc444cb30205e8dc30e Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 14 Sep 2020 08:25:09 +1000 Subject: [PATCH] Show npm/node status in health check --- app/Utils/SystemHealth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Utils/SystemHealth.php b/app/Utils/SystemHealth.php index eb1d830d29..5a31ea9ab0 100644 --- a/app/Utils/SystemHealth.php +++ b/app/Utils/SystemHealth.php @@ -71,8 +71,8 @@ class SystemHealth 'env_writable' => self::checkEnvWritable(), //'mail' => self::testMailServer(), 'simple_db_check' => (bool) self::simpleDbCheck(), - //'npm_status' => self::checkNpm(), - //'node_status' => self::checkNode(), + 'npm_status' => self::checkNpm(), + 'node_status' => self::checkNode(), ]; }