Skip to content

Commit

Permalink
fix a bug iter_subproc
Browse files Browse the repository at this point in the history
This commit fixes a small bug in `iter_subproc.__init__`.
The parameter `chunksize` was never used. Instead a
constant value was used. The new code passes the value
down to `iterable_subprocess`.
  • Loading branch information
christian-monch committed Nov 27, 2023
1 parent d9da16d commit 1dfbb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datalad_next/runners/iter_subproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ def iter_subproc(
return iterable_subprocess(
args,
tuple() if input is None else input,
chunk_size=COPY_BUFSIZE,
chunk_size=chunk_size,
)

0 comments on commit 1dfbb14

Please sign in to comment.