clientv3: fix lease keepalive duration

release-3.2
Xiang 2017-02-16 11:13:40 -08:00
parent 23b5a29101
commit 4274db46f2
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ func (l *lessor) recvKeepAlive(resp *pb.LeaseKeepAliveResponse) {
}
// send update to all channels
nextKeepAlive := time.Now().Add(1 + time.Duration(karesp.TTL/3)*time.Second)
nextKeepAlive := time.Now().Add(time.Duration(karesp.TTL/3+1) * time.Second)
ka.deadline = time.Now().Add(time.Duration(karesp.TTL) * time.Second)
for _, ch := range ka.chs {
select {