sm
/
cache
1
0
Fork 0

Consistency.

This commit is contained in:
Matt Keller 2015-03-06 08:14:50 -05:00
parent f66ee0bbc6
commit b60c6ee2c8
1 changed files with 2 additions and 2 deletions

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
}
}
}