Consistency.

This commit is contained in:
Matt Keller
2015-03-08 09:23:24 -04:00
parent f66ee0bbc6
commit b60c6ee2c8
+2 -2
View File
@@ -1096,7 +1096,7 @@ func (c *cache) ExpireLRU() {
// Cache the current time.
// We do this "early" so that when we set an Expiration,
// it is definitely "do" when the janitor ticks
notw := time.Now()
now := time.Now()
var lastTime int64 = 0
var lastName string = ""
@@ -1121,7 +1121,7 @@ func (c *cache) ExpireLRU() {
if lastTime > 0 {
// We expire the item, but making it look .Expired(),
// so the janitor will clean it up for us
c.items[lastName].Expiration = &notw
c.items[lastName].Expiration = &now
}
}
}