bump channel capacity to 100

This commit is contained in:
Travis McLane
2020-03-26 05:21:35 +11:00
committed by Lea Anthony
parent 577b59aa89
commit 615cc55b31
+1 -1
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),
}
}