don't load the whole thing into memory
This commit is contained in:
parent
e16407f5cf
commit
c5feb2f503
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue