fix double callback for proc.on 'error' and proc.on 'close'

This commit is contained in:
Brian Gough 2015-02-27 16:07:02 +00:00
parent 140090da47
commit 7f38c5e5a3

View file

@ -2,6 +2,7 @@ fs = require "fs"
Path = require "path"
spawn = require("child_process").spawn
logger = require "logger-sharelatex"
_ = require "underscore"
module.exports = OutputFileOptimiser =
@ -22,12 +23,15 @@ module.exports = OutputFileOptimiser =
stdout = ""
proc.stdout.on "data", (chunk) ->
stdout += chunk.toString()
proc.on "error", callback
callback = _.once(callback) # avoid double call back for error and close event
proc.on "error", (err) ->
logger.warn {err, args}, "qpdf failed"
callback(null) # ignore the error
proc.on "close", (code) ->
if code != 0
logger.warn {directory, code}, "qpdf returned error"
return callback null
logger.warn {code, args}, "qpdf returned error"
return callback(null) # ignore the error
fs.rename tmpOutput, dst, (err) ->
if err?
logger.warn {tmpOutput, dst}, "failed to rename output of qpdf command"
callback err
callback(null) # ignore the error