style: Update peer last online time logic (#173)

This commit is contained in:
lejianwen
2025-03-15 21:02:08 +08:00
parent 6ed75bc517
commit 891469909c

View File

@@ -56,7 +56,7 @@ func (i *Index) Heartbeat(c *gin.Context) {
return
}
//如果在40s以内则不更新
if time.Now().Unix()-peer.LastOnlineTime > 40 {
if time.Now().Unix()-peer.LastOnlineTime >= 30 {
upp := &model.Peer{RowId: peer.RowId, LastOnlineTime: time.Now().Unix(), LastOnlineIp: c.ClientIP()}
service.AllService.PeerService.Update(upp)
}