[#506] node: Use DeletionInfo() method to get deleted container owner

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
feat/eacl_ape_converter
Evgenii Stratonikov 2023-11-14 14:27:34 +03:00 committed by Evgenii Stratonikov
parent a952a406a2
commit f13f5d3b0f
1 changed files with 3 additions and 7 deletions

View File

@ -93,16 +93,12 @@ func configureEACLAndContainerSources(c *cfg, client *cntClient.Client, cnrSrc c
subscribeToContainerRemoval(c, func(e event.Event) {
ev := e.(containerEvent.DeleteSuccess)
// read owner of the removed container in order to update the listing cache.
// It's strange to read already removed container, but we can successfully hit
// the cache.
// TODO: use owner directly from the event after neofs-contract#256 will become resolved
cnr, err := cachedContainerStorage.Get(ev.ID)
cachedContainerStorage.handleRemoval(ev.ID)
info, err := cachedContainerStorage.DeletionInfo(ev.ID)
if err == nil {
cachedContainerLister.update(cnr.Value.Owner(), ev.ID, false)
cachedContainerLister.update(info.Owner, ev.ID, false)
}
cachedContainerStorage.handleRemoval(ev.ID)
c.log.Debug(logs.FrostFSNodeContainerRemovalEventsReceipt,
zap.Stringer("id", ev.ID),
)