Просмотр исходного кода

Increase the hard-timeout to 10 minutes.

In practice most projects will still be limited to five minutes,
but this allows us to bump up the limit for some projects,
especially legacy v1 projects that have been imported to v2
Shane Kilkelly 7 лет назад
Родитель
Сommit
880ec16827
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      services/clsi/app.coffee
  2. 1 1
      services/clsi/app/coffee/RequestParser.coffee

+ 1 - 1
services/clsi/app.coffee

@@ -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

+ 1 - 1
services/clsi/app/coffee/RequestParser.coffee

@@ -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 = {}