execbc: increased Buffer Size for IO Operation

This commit is contained in:
Michael Reif
2024-01-06 21:50:09 +01:00
parent 2b9247d630
commit 33eafd5691
+1 -1
View File
@@ -21,7 +21,7 @@ func PipeCloser(cmd *exec.Cmd) (io.WriteCloser, error) {
return nil, err
}
return pipeCloser{bufio.NewWriterSize(stdin, 640), stdin, cmd}, nil
return pipeCloser{bufio.NewWriterSize(stdin, core.BufferSize), stdin, cmd}, nil
}
func (p pipeCloser) Close() (err error) {