mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
fix two bugs in auto compile limit logic
1. the compileGroup is "standard" not default 2. was not excluding normal compiles from metrics
This commit is contained in:
parent
5b0d3d1429
commit
fc3ecddd0e
1 changed files with 4 additions and 1 deletions
|
@ -77,7 +77,10 @@ module.exports = CompileManager =
|
|||
return callback null, true
|
||||
|
||||
_checkCompileGroupAutoCompileLimit: (isAutoCompile, compileGroup, callback = (err, canCompile)->)->
|
||||
if compileGroup is "default"
|
||||
if !isAutoCompile
|
||||
return callback(null, true)
|
||||
if compileGroup is "standard"
|
||||
# apply extra limits to the standard compile group
|
||||
CompileManager._checkIfAutoCompileLimitHasBeenHit isAutoCompile, compileGroup, callback
|
||||
else
|
||||
Metrics.inc "auto-compile-#{compileGroup}"
|
||||
|
|
Loading…
Reference in a new issue