浏览代码

clientv3: do not set next keepalive time <= now+TTL

Anthony Romano 8 年之前
父节点
当前提交
3c306cdb3e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      clientv3/lease.go

+ 1 - 1
clientv3/lease.go

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