clientv3: don't reset keepalive stream on grant failure

Was triggering cancelation errors on outstanding KeepAlives if Grant
had to retry.
release-3.1
Anthony Romano 2016-12-16 00:28:17 -08:00
parent 46bd842db9
commit a375e91c66
1 changed files with 0 additions and 3 deletions

View File

@ -177,9 +177,6 @@ func (l *lessor) Grant(ctx context.Context, ttl int64) (*LeaseGrantResponse, err
if isHaltErr(cctx, err) {
return nil, toErr(cctx, err)
}
if nerr := l.newStream(); nerr != nil {
return nil, nerr
}
}
}