add error check into health check

This commit is contained in:
Henry Oswald 2016-03-01 13:20:20 +00:00
parent 872612a8d3
commit b872fbee32

View file

@ -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"