Archived
1
0

fix: output lost after hotswapping (#5346)

I think the pipe was closing the other streams when the child stream
closed so instead just write it one way.
This commit is contained in:
Asher 2022-07-15 13:44:27 -05:00 committed by GitHub
parent 714257b3c5
commit 646f2436b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -292,14 +292,18 @@ export class ParentProcess extends Process {
const child = this.spawn()
this.child = child
// Log both to stdout and to the log directory.
// Log child output to stdout/stderr and to the log directory.
if (child.stdout) {
child.stdout.pipe(this.logStdoutStream)
child.stdout.pipe(process.stdout)
child.stdout.on("data", (data) => {
this.logStdoutStream.write(data)
process.stdout.write(data)
})
}
if (child.stderr) {
child.stderr.pipe(this.logStderrStream)
child.stderr.pipe(process.stderr)
child.stderr.on("data", (data) => {
this.logStderrStream.write(data)
process.stderr.write(data)
})
}
this.logger.debug(`spawned inner process ${child.pid}`)