mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-12-16 00:39:40 +00:00
Revert "kill zombie processes to reduce memory usage"
This reverts commit 19e39f6321.
This commit is contained in:
parent
61c32d99e7
commit
ba07761de3
1 changed files with 1 additions and 4 deletions
|
|
@ -18,10 +18,7 @@ module.exports = (function () {
|
|||
proc.stdout.on('data', function (data) { probeData.push(data) })
|
||||
proc.stderr.on('data', function (data) { errData.push(data) })
|
||||
|
||||
proc.on('exit', code => {
|
||||
exitCode = code
|
||||
proc.kill()
|
||||
})
|
||||
proc.on('exit', code => { exitCode = code })
|
||||
proc.on('error', err => reject(err))
|
||||
proc.on('close', () => {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue