update stale logic to always execute ping and stale check
This commit is contained in:
parent
7820d2acf0
commit
55f7ecae6b
1 changed files with 4 additions and 2 deletions
|
@ -16,10 +16,12 @@ func RemoveStaleClients() {
|
||||||
for range ticker.C {
|
for range ticker.C {
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
for _, client := range Clients {
|
for _, client := range Clients {
|
||||||
if sendPing(client) && !isStale(client) {
|
ping := sendPing(client)
|
||||||
|
stale := isStale(client)
|
||||||
|
if !ping || stale {
|
||||||
client.Conn.Close()
|
client.Conn.Close()
|
||||||
delete(Clients, client.Conn.LocalAddr())
|
delete(Clients, client.Conn.LocalAddr())
|
||||||
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong)
|
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong.Format("RFC3339"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mu.Unlock()
|
mu.Unlock()
|
||||||
|
|
Loading…
Reference in a new issue