bump channel capacity to 100

This commit is contained in:
Travis McLane
2020-03-25 11:22:01 -05:00
committed by Lea Anthony
parent 577b59aa89
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),
}
}