Merge pull request #126 from overleaf/sk-increase-hard-timeout

Increase the hard-timeout to 10 minutes.
This commit is contained in:
Shane Kilkelly 2019-06-10 09:44:48 +01:00 committed by GitHub
commit 12efec605c
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ app.use Metrics.http.monitor(logger)
# Compile requests can take longer than the default two
# minutes (including file download time), so bump up the
# timeout a bit.
TIMEOUT = 6 * 60 * 1000
TIMEOUT = 10 * 60 * 1000
app.use (req, res, next) ->
req.setTimeout TIMEOUT
res.setTimeout TIMEOUT

View file

@ -2,7 +2,7 @@ settings = require("settings-sharelatex")
module.exports = RequestParser =
VALID_COMPILERS: ["pdflatex", "latex", "xelatex", "lualatex"]
MAX_TIMEOUT: 300
MAX_TIMEOUT: 600
parse: (body, callback = (error, data) ->) ->
response = {}