LibreOffice: Close stdin right away
This should prevent LibreOffice from hanging if it attempts to read from stdin (it'll get EOF and probably exit with an error instead).pull/5208/head
parent
0c31940b09
commit
76374bc489
|
@ -44,10 +44,11 @@ const doConvertTask = async (task) => {
|
||||||
'--outdir',
|
'--outdir',
|
||||||
tmpDir,
|
tmpDir,
|
||||||
]);
|
]);
|
||||||
|
soffice.stdin.end();
|
||||||
// Soffice/libreoffice is buggy and often hangs.
|
// Soffice/libreoffice is buggy and often hangs.
|
||||||
// To remedy this we kill the spawned process after a while.
|
// To remedy this we kill the spawned process after a while.
|
||||||
|
// TODO: Use the timeout option once support for Node.js < v15.13.0 is dropped.
|
||||||
const hangTimeout = setTimeout(() => {
|
const hangTimeout = setTimeout(() => {
|
||||||
soffice.stdin.pause(); // required to kill hanging threads
|
|
||||||
soffice.kill();
|
soffice.kill();
|
||||||
}, 120000);
|
}, 120000);
|
||||||
let stdoutBuffer = '';
|
let stdoutBuffer = '';
|
||||||
|
|
Loading…
Reference in New Issue