Fix/Infinite recursion in SE's wrapper #147

Merged
fyrchik merged 1 commit from carpawell/frostfs-node:fix/infinite-requirsion into master 2023-03-17 17:20:08 +00:00

View file

@ -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 {