mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
add setting to avoid optimisations outside docker
This commit is contained in:
parent
733cea6de0
commit
86f29a4cfb
1 changed files with 7 additions and 2 deletions
|
@ -172,8 +172,13 @@ module.exports = OutputCacheManager =
|
||||||
logger.error err: err, src: src, dst: dst, "copy error for file in cache"
|
logger.error err: err, src: src, dst: dst, "copy error for file in cache"
|
||||||
callback(err)
|
callback(err)
|
||||||
else
|
else
|
||||||
# call the optimiser for the file too
|
if Settings.clsi?.optimiseInDocker
|
||||||
OutputFileOptimiser.optimiseFile src, dst, callback
|
# don't run any optimisations on the pdf when they are done
|
||||||
|
# in the docker container
|
||||||
|
callback()
|
||||||
|
else
|
||||||
|
# call the optimiser for the file too
|
||||||
|
OutputFileOptimiser.optimiseFile src, dst, callback
|
||||||
|
|
||||||
_checkIfShouldCopy: (src, callback = (err, shouldCopy) ->) ->
|
_checkIfShouldCopy: (src, callback = (err, shouldCopy) ->) ->
|
||||||
return callback(null, !Path.basename(src).match(/^strace/))
|
return callback(null, !Path.basename(src).match(/^strace/))
|
||||||
|
|
Loading…
Reference in a new issue