Consistency.
This commit is contained in:
parent
f66ee0bbc6
commit
b60c6ee2c8
4
cache.go
4
cache.go
|
@ -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 = ¬w
|
||||
c.items[lastName].Expiration = &now
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue