mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-18 12:25:14 +00:00
parent
f0f70dd3f2
commit
e49f2e6061
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ export default () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isProcRunning(_proc)) {
|
if (isProcRunning(_proc)) {
|
||||||
stream = apiClient.streamLogs(owner, repo, build, _proc.pid, onLogsUpdate);
|
// load stream of parent process (which receives all child processes logs)
|
||||||
|
stream = apiClient.streamLogs(owner, repo, build, _proc.ppid, onLogsUpdate);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue