forked from TrueCloudLab/frostfs-node
[#67] node: Fix infinite recursion in SE's wrapper
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
This commit is contained in:
parent
b70caa216b
commit
10c419adf0
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue