mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 04:28:17 +00:00
add error check into health check
This commit is contained in:
parent
872612a8d3
commit
b872fbee32
1 changed files with 2 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue