Skip to content

Commit

Permalink
Merge pull request #5 from YosysHQ/jix/subprocess_chunk_limit
Browse files Browse the repository at this point in the history
taskloop: Set an effectively unbounded chunk limit for subprocess stdio
  • Loading branch information
jix authored Nov 30, 2023
2 parents 8803d14 + bfa2f06 commit 29a9a3b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/yosys_mau/task_loop/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ async def on_run(self) -> None:
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
cwd=cwd,
limit=1 << 60,
**subprocess_args,
)
self.__process_started = True
Expand Down

0 comments on commit 29a9a3b

Please sign in to comment.