diff --git a/tools/filesystem/blob/reader.go b/tools/filesystem/blob/reader.go index 9995c619..69a0d1e9 100644 --- a/tools/filesystem/blob/reader.go +++ b/tools/filesystem/blob/reader.go @@ -173,7 +173,7 @@ func (r *Reader) WriteTo(w io.Writer) (int64, error) { func readFromWriteTo(r io.Reader, w io.Writer) (int64, int64, error) { // Note: can't use io.Copy because it will try to use r.WriteTo // or w.WriteTo, which is recursive in this context. - buf := make([]byte, 1024) + buf := make([]byte, 4096) var totalRead, totalWritten int64 for { numRead, rerr := r.Read(buf)