Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Use process.run instead of process.Popen to avoid deadlock (#208)
* Use process.run instead of process.Popen, to avoid deadlock When using process.Popen, and there is a large amount of data being returned on std out or error by the subprocess, it might cause a deadlock. So Popen is not recommended to use in these casses, we should rather use the run command. * PR review adjustments see suggestions from code review --------- Co-authored-by: Benjamin K <53038537+treee111@users.noreply.github.com>
- Loading branch information