added more logging to failed health checks

This commit is contained in:
Henry Oswald 2016-03-03 10:50:55 +00:00
parent 1f4c453670
commit e8b3fb5be6

View file

@ -15,6 +15,7 @@ module.exports =
(cb)->
request.get {url:"http://localhost:#{port}/check_lock", timeout:3000}, (err, res, body) ->
if err?
logger.err err:err, project_id:project_id, "error checking lock for health check"
cb(err)
else if res?.statusCode != 200
cb("status code not 200, it's #{res.statusCode}")
@ -23,6 +24,7 @@ module.exports =
(cb)->
request.post {url:"#{url}/flush", timeout:3000}, (err, res, body) ->
if err?
logger.err err:err, project_id:project_id, "error flushing for health check"
cb(err)
else if res?.statusCode != 204
cb("status code not 204, it's #{res.statusCode}")
@ -31,6 +33,7 @@ module.exports =
(cb)->
request.get {url:"#{url}/updates", timeout:3000}, (err, res, body)->
if err?
logger.err err:err, project_id:project_id, "error getting updates for health check"
cb(err)
else if res?.statusCode != 200
cb("status code not 200, it's #{res.statusCode}")