Fix incorrect backfilling
This would have the effect that item TTL is continually reset as long as an item is returned by fetch
This commit is contained in:
parent
37ef52259f
commit
be638e8e4a
@ -58,7 +58,7 @@ func BackfillItem(new *Item, old *Item) {
|
|||||||
new.Title = old.Title
|
new.Title = old.Title
|
||||||
}
|
}
|
||||||
if new.Ttl == 0 {
|
if new.Ttl == 0 {
|
||||||
new.Tts = old.Tts
|
new.Ttl = old.Ttl
|
||||||
}
|
}
|
||||||
if new.Ttd == 0 {
|
if new.Ttd == 0 {
|
||||||
new.Ttd = old.Ttd
|
new.Ttd = old.Ttd
|
||||||
|
Loading…
Reference in New Issue
Block a user