Merge pull request #8522 from gyuho/lessor

lease: use time.Until in 'Remaining'
This commit is contained in:
Gyu-Ho Lee 2017-09-07 18:44:16 -07:00 committed by GitHub
commit 70c20a9e73

View File

@ -627,7 +627,7 @@ func (l *Lease) Remaining() time.Duration {
if l.expiry.IsZero() {
return time.Duration(math.MaxInt64)
}
return l.expiry.Sub(time.Now())
return time.Until(l.expiry)
}
type LeaseItem struct {