From 3bdabb5ae6652f7932301a4472a3d409661c9fb6 Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Mon, 31 Mar 2014 14:45:26 +0100 Subject: Use larger buffer in _relay_exec_output --- distbuild-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'distbuild-helper') diff --git a/distbuild-helper b/distbuild-helper index 9d70642e..7399fb59 100755 --- a/distbuild-helper +++ b/distbuild-helper @@ -212,7 +212,7 @@ class HelperMachine(distbuild.StateMachine): def _relay_exec_output(self, event_source, event): distbuild.crash_point() - buf_size = 64 + buf_size = 16 * 1024 fd = event.file.fileno() data = os.read(fd, buf_size) if data: -- cgit v1.2.1