From b872fbee32aa9f36e104456440bb0e00da271488 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Tue, 1 Mar 2016 13:20:20 +0000 Subject: [PATCH] add error check into health check --- services/spelling/app/coffee/HealthCheckController.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/spelling/app/coffee/HealthCheckController.coffee b/services/spelling/app/coffee/HealthCheckController.coffee index c4f847f46d..504529bd93 100644 --- a/services/spelling/app/coffee/HealthCheckController.coffee +++ b/services/spelling/app/coffee/HealthCheckController.coffee @@ -12,7 +12,8 @@ module.exports = language: "en" timeout: 1000 * 20 request.post opts, (err, response, body)-> - console.log body?.misspellings?[0]?.suggestions.length + if err? + return res.sendStatus 500 numberOfSuggestions = body?.misspellings?[0]?.suggestions?.length if numberOfSuggestions > 10 logger.log "health check passed"