Unverified Commit 300902b7 authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

[Bugfix] fix unclosed gorountine for websocket ping (#126)

parent cd3dca8d
......@@ -58,6 +58,10 @@ func OnNamespaceConnected(c *neffos.NSConn, msg neffos.Message) error {
go func() {
for {
<-time.After(30 * time.Second)
if c.Conn.IsClosed() {
logger.Infof("User %s from %s websocket connect closed", user.Username, remoteIP)
return
}
c.Emit("ping", []byte(""))
}
}()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment