diff --git a/store/node.go b/store/node.go index f90ff8d3d..615da5513 100644 --- a/store/node.go +++ b/store/node.go @@ -150,7 +150,8 @@ func (n *node) expirationAndTTL(clock clockwork.Clock) (*time.Time, int64) { if (ttlN % time.Second) > 0 { ttl++ } - return &n.ExpireTime, int64(ttl) + t := n.ExpireTime.UTC() + return &t, int64(ttl) } return nil, 0 }