Explorar el Código

Merge pull request #8522 from gyuho/lessor

lease: use time.Until in 'Remaining'
Gyu-Ho Lee hace 8 años
padre
commit
70c20a9e73
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lease/lessor.go

+ 1 - 1
lease/lessor.go

@@ -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 {