mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 20:01:00 +00:00
added null check to health check controller
This commit is contained in:
parent
a427634cbb
commit
872612a8d3
2 changed files with 4 additions and 3 deletions
|
@ -12,8 +12,8 @@ module.exports =
|
|||
language: "en"
|
||||
timeout: 1000 * 20
|
||||
request.post opts, (err, response, body)->
|
||||
console.log body?.misspellings[0]?.suggestions.length
|
||||
numberOfSuggestions = body?.misspellings[0]?.suggestions?.length
|
||||
console.log body?.misspellings?[0]?.suggestions.length
|
||||
numberOfSuggestions = body?.misspellings?[0]?.suggestions?.length
|
||||
if numberOfSuggestions > 10
|
||||
logger.log "health check passed"
|
||||
res.sendStatus 200
|
||||
|
|
|
@ -10,7 +10,8 @@ module.exports = SpellingAPIController =
|
|||
if error?
|
||||
logger.err err:error, user_id:req?.params?.user_id, word_count: req?.body?.words?.length, "error processing spelling request"
|
||||
return res.sendStatus(500)
|
||||
res.send(result)
|
||||
# res.send(result)
|
||||
res.writeHead 200
|
||||
|
||||
learn: (req, res, next) ->
|
||||
metrics.inc "spelling-learn", 0.1
|
||||
|
|
Loading…
Reference in a new issue