From 77c11a6a506f121b55ef4f55d32eba586fa38992 Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Wed, 6 Oct 2021 19:57:14 +0200 Subject: [PATCH] Update server/validate-monitor-checks.js Co-authored-by: Nelson Chan --- server/validate-monitor-checks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/validate-monitor-checks.js b/server/validate-monitor-checks.js index aefc97b..095d040 100644 --- a/server/validate-monitor-checks.js +++ b/server/validate-monitor-checks.js @@ -12,7 +12,7 @@ function validateMonitorChecks(res, checks, bean) { bean.msg += `, status matches '${check.value}'`; bean.status = UP; } else { - throw new Error(bean.msg + ", but status code dit not match " + check.value); + throw new Error(bean.msg + ", but status code does not match " + check.value); } break;