Increase the buffer size for POST requests

Close #3685
pull/3691/head
Junegunn Choi 2 months ago
parent 05453881c3
commit db6db49ed6
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -776,7 +776,7 @@ func NewTerminal(opts *Options, eventBox *util.EventBox) *Terminal {
theme: opts.Theme,
startChan: make(chan fitpad, 1),
killChan: make(chan int),
serverInputChan: make(chan []*action, 10),
serverInputChan: make(chan []*action, 100),
serverOutputChan: make(chan string),
eventChan: make(chan tui.Event, 6), // (load + result + zero|one) | (focus) | (resize) | (GetChar)
tui: renderer,

Loading…
Cancel
Save