mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Increase memory limit to 64mb
This commit is contained in:
parent
2bedd08ff9
commit
34f47178fa
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ module.exports = CompileManager =
|
||||||
isLaTeXFile = request.rootResourcePath?.match(/\.tex$/i)
|
isLaTeXFile = request.rootResourcePath?.match(/\.tex$/i)
|
||||||
if request.check? and isLaTeXFile
|
if request.check? and isLaTeXFile
|
||||||
env['CHKTEX_OPTIONS'] = '-nall -e9 -e10 -w15 -w16'
|
env['CHKTEX_OPTIONS'] = '-nall -e9 -e10 -w15 -w16'
|
||||||
env['CHKTEX_ULIMIT_OPTIONS'] = '-t 5 -v 16000'
|
env['CHKTEX_ULIMIT_OPTIONS'] = '-t 5 -v 64000'
|
||||||
if request.check is 'error'
|
if request.check is 'error'
|
||||||
env['CHKTEX_EXIT_ON_ERROR'] = 1
|
env['CHKTEX_EXIT_ON_ERROR'] = 1
|
||||||
if request.check is 'validate'
|
if request.check is 'validate'
|
||||||
|
|
|
@ -111,7 +111,7 @@ describe "CompileManager", ->
|
||||||
compiler: @compiler
|
compiler: @compiler
|
||||||
timeout: @timeout
|
timeout: @timeout
|
||||||
image: @image
|
image: @image
|
||||||
environment: {'CHKTEX_OPTIONS': '-nall -e9 -e10 -w15 -w16', 'CHKTEX_EXIT_ON_ERROR':1, 'CHKTEX_ULIMIT_OPTIONS': '-t 5 -v 16000'}
|
environment: {'CHKTEX_OPTIONS': '-nall -e9 -e10 -w15 -w16', 'CHKTEX_EXIT_ON_ERROR':1, 'CHKTEX_ULIMIT_OPTIONS': '-t 5 -v 64000'}
|
||||||
})
|
})
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue