diff --git a/http/api/client.go b/http/api/client.go index fcac909..7de1f7f 100644 --- a/http/api/client.go +++ b/http/api/client.go @@ -373,7 +373,7 @@ func (clients) Status(c *gin.Context) { ipAllocation += iaip.String() + "," } ipAllocation = strings.TrimRight(ipAllocation, ",") - isOnline := time.Since(p.LastHandshakeTime).Minutes() < 1 + isOnline := time.Since(p.LastHandshakeTime).Minutes() < 3 data = append(data, vo.ClientStatus{ ID: clientInfo.Id, Name: clientInfo.Name,