Fix too many open files error. resolves #983 (#1033)

This commit is contained in:
ilike2burnthing
2024-01-07 21:22:14 +00:00
committed by GitHub
parent a4d42d7834
commit 993b8c41ac
4 changed files with 11 additions and 6 deletions

View File

@@ -41,6 +41,7 @@ def start_detached(executable, *args):
# close pipes
writer.close()
reader.close()
process.close()
return pid