1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

refactor(api): minor refactor to stream.go

This commit is contained in:
Anthony Lapenna 2019-05-13 09:20:55 +12:00
parent 540d3c2c6b
commit 6be394c2e0

View file

@ -27,12 +27,12 @@ func streamFromTCPConnToWebsocketConn(websocketConn *websocket.Conn, br *bufio.R
for {
out := make([]byte, 2048)
_, err := br.Read(out)
processedOutput := validString(string(out[:]))
if err != nil {
errorChan <- err
break
}
processedOutput := validString(string(out[:]))
err = websocketConn.WriteMessage(websocket.TextMessage, []byte(processedOutput))
if err != nil {
errorChan <- err