mirror of https://github.com/abpframework/abp.git
Browse Source
Read stdout and stderr concurrently to prevent pipe buffer deadlock. The sequential ReadToEnd() calls caused a hang when child processes (e.g. dotnet build) produced enough stderr output to fill the OS pipe buffer (~4KB on Windows), since the parent blocked on stdout while the child blocked on stderr. Made-with: Cursorpull/25155/head
1 changed files with 9 additions and 9 deletions
Loading…
Reference in new issue