bump channel capacity to 100

This commit is contained in:
Travis McLane 2020-03-25 11:22:01 -05:00 committed by Lea Anthony
commit 615cc55b31

View file

@ -35,7 +35,7 @@ func newSession(conn *websocket.Conn, bindingCache []string, ipc interfaces.IPCM
log: logger,
eventManager: eventMgr,
shutdown: make(chan bool),
writeChan: make(chan []byte),
writeChan: make(chan []byte, 100),
}
}