XXX add ping fail debug log
This commit is contained in:
parent
55f7ecae6b
commit
c91cb73e21
1 changed files with 3 additions and 4 deletions
|
@ -16,12 +16,10 @@ func RemoveStaleClients() {
|
|||
for range ticker.C {
|
||||
mu.Lock()
|
||||
for _, client := range Clients {
|
||||
ping := sendPing(client)
|
||||
stale := isStale(client)
|
||||
if !ping || stale {
|
||||
if !sendPing(client) || isStale(client) {
|
||||
client.Conn.Close()
|
||||
delete(Clients, client.Conn.LocalAddr())
|
||||
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong.Format("RFC3339"))
|
||||
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong)
|
||||
}
|
||||
}
|
||||
mu.Unlock()
|
||||
|
@ -33,6 +31,7 @@ func sendPing(client *models.WebsocketClient) bool {
|
|||
err := client.Conn.WriteMessage(websocket.PingMessage, nil)
|
||||
|
||||
if err != nil {
|
||||
helper.Logger.Debug("ping failed", "host", client.RealIP)
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue