[#2176] neofs-node: Do not invalidate old cache items

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
carpawell/fix/multiple-cache-update-requests-FROST
Evgenii Stratonikov 2022-12-27 11:16:31 +03:00 committed by fyrchik
parent e5a40b90b6
commit 8078af3424
1 changed files with 4 additions and 0 deletions

View File

@ -294,6 +294,10 @@ func (s *ttlContainerLister) update(owner user.ID, cnr cid.ID, add bool) {
return
}
if s.ttl <= time.Since(val.t) {
return
}
item := val.v
item.mtx.Lock()