From 10c419adf087e45ba99aeaa3824f486667112a78 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Fri, 17 Mar 2023 18:47:59 +0300 Subject: [PATCH] [#67] node: Fix infinite recursion in SE's wrapper Signed-off-by: Pavel Karpy --- cmd/frostfs-node/object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/frostfs-node/object.go b/cmd/frostfs-node/object.go index 5e0307362..df838464a 100644 --- a/cmd/frostfs-node/object.go +++ b/cmd/frostfs-node/object.go @@ -592,7 +592,7 @@ type engineWithoutNotifications struct { } func (e engineWithoutNotifications) IsLocked(address oid.Address) (bool, error) { - return e.IsLocked(address) + return e.engine.IsLocked(address) } func (e engineWithoutNotifications) Delete(tombstone oid.Address, toDelete []oid.ID) error {