sdk: fix piping stdio of Daemons, support onStdOut/onStderr (#2762)

This commit is contained in:
Remco Ros
2024-10-25 00:29:12 +02:00
committed by GitHub
parent 7694b68e06
commit 42cfd69463
5 changed files with 26 additions and 15 deletions

View File

@@ -151,7 +151,7 @@ export class DockerProcedureContainer {
}
}
async spawn(commands: string[]): Promise<cp.ChildProcessWithoutNullStreams> {
async spawn(commands: string[]): Promise<cp.ChildProcess> {
return await this.subcontainer.spawn(commands)
}
}