don't load the whole thing into memory

This commit is contained in:
Zack Scholl 2019-04-13 02:36:46 -07:00
parent e16407f5cf
commit c5feb2f503

View File

@ -82,7 +82,7 @@ func new(s internalSess.Session) *Session {
initialized: false,
dataBuff: make([]byte, senderBuffSize),
stopSending: make(chan struct{}, 1),
output: make(chan outputMsg, senderBuffSize*10),
output: make(chan outputMsg, 100),
doneCheck: false,
readingStats: stats.New(),
spinner: spin,