Merge pull request #28 from sharelatex/bg-upate-timeouts

update timeouts to allow for 5 second retry delay
This commit is contained in:
Brian Gough
2017-04-19 13:19:05 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -22,7 +22,7 @@ module.exports =
else
cb()
(cb)->
request.post {url:"#{url}/flush", timeout:3000}, (err, res, body) ->
request.post {url:"#{url}/flush", timeout:10000}, (err, res, body) ->
if err?
logger.err err:err, project_id:project_id, "error flushing for health check"
cb(err)
@@ -31,7 +31,7 @@ module.exports =
else
cb()
(cb)->
request.get {url:"#{url}/updates", timeout:3000}, (err, res, body)->
request.get {url:"#{url}/updates", timeout:10000}, (err, res, body)->
if err?
logger.err err:err, project_id:project_id, "error getting updates for health check"
cb(err)
@@ -3,7 +3,7 @@ logger = require "logger-sharelatex"
Settings = require "settings-sharelatex"
# Don't let HTTP calls hang for a long time
MAX_HTTP_REQUEST_LENGTH = 30000 # 30 seconds
MAX_HTTP_REQUEST_LENGTH = 15000 # 15 seconds
# DEPRECATED! This method of getting user details via track-changes is deprecated
# in the way we lay out our services.