Minor fix
This commit is contained in:
parent
b0f65ded80
commit
9a5c71fddc
|
@ -158,7 +158,8 @@ exports.ffprobe = function ffprobe(filename, cb) {
|
|||
var timer = setTimeout(function () {
|
||||
Logger.errlog.log("Possible runaway ffprobe process for file " + filename);
|
||||
fflog("Killing ffprobe for " + filename + " after " + (TIMEOUT/1000) + " seconds");
|
||||
childErr = new Error("File query exceeded time limit of 10 seconds");
|
||||
childErr = new Error("File query exceeded time limit of " + (TIMEOUT/1000) +
|
||||
" seconds");
|
||||
child.kill("SIGKILL");
|
||||
}, TIMEOUT);
|
||||
|
||||
|
@ -172,7 +173,7 @@ exports.ffprobe = function ffprobe(filename, cb) {
|
|||
|
||||
child.stderr.on("data", function (data) {
|
||||
stderr += data;
|
||||
if (stderr.match(/the tls connection was non-properly terminated/i)) {
|
||||
if (stderr.match(/the tls connection was non-properly terminated|http error 416/i)) {
|
||||
fflog("Killing ffprobe for " + filename + " due to TLS error");
|
||||
childErr = new Error("Remote server closed connection unexpectedly");
|
||||
child.kill("SIGKILL");
|
||||
|
|
Loading…
Reference in a new issue