treat websocket write error as fatal
This commit is contained in:
parent
ed8d5695d0
commit
2f15ad4244
1 changed files with 1 additions and 2 deletions
|
@ -317,8 +317,7 @@ func main() {
|
|||
case <-time.After(time.Duration(1) * time.Millisecond * 1000):
|
||||
err := conn.WriteMessage(websocket.TextMessage, []byte("."))
|
||||
if err != nil {
|
||||
log.Println("!! error during write to websocket:", err)
|
||||
return
|
||||
log.Fatal("!! error during write to websocket:", err)
|
||||
}
|
||||
|
||||
url := conf.MbUrl + "/api/messages"
|
||||
|
|
Loading…
Reference in a new issue