fix heartbeat error

This commit is contained in:
fatedier
2017-03-27 17:25:25 +08:00
parent 58d0d41501
commit 30aeaf968e
2 changed files with 6 additions and 1 deletions

View File

@ -318,6 +318,7 @@ func (ctl *Control) manager() {
ctl.sendCh <- resp
case *msg.Ping:
ctl.lastPing = time.Now()
ctl.conn.Debug("receive heartbeat")
ctl.sendCh <- &msg.Pong{}
}
}