store: Increase buffering for the '%stderr-write' upcall. * guix/store.scm (process-stderr) <%stderr-write>: Pass #:buffer-size to 'dump-port'.
1 files changed, 2 insertions(+), 1 deletions(-) M guix/store.scm
M guix/store.scm => guix/store.scm +2 -1
@@ 470,7 470,8 @@ encoding conversion errors." ;; Write a byte stream to USER-PORT. (let* ((len (read-int p)) (m (modulo len 8))) (dump-port p user-port len) (dump-port p user-port len #:buffer-size (if (<= len 16384) 16384 65536)) (unless (zero? m) ;; Consume padding, as for strings. (get-bytevector-n p (- 8 m))))