From 983bc728fa719b4827bfdbbcec41ff76a85b499f Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Mon, 13 Oct 2014 18:26:08 +0400 Subject: [PATCH] Increase buffer to 5 megabytes --- emitter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emitter.go b/emitter.go index 8b0e4b9..0bc8086 100644 --- a/emitter.go +++ b/emitter.go @@ -21,7 +21,7 @@ func Start(stop chan int) { // Copy from 1 reader to multiple writers func CopyMulty(src io.Reader, writers ...io.Writer) (err error) { - buf := make([]byte, 32*1024) + buf := make([]byte, 5*1024*1024) wIndex := 0 for {