You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when you have a model with Custom Id Property and not standard-name "persistence_object_identifier", the aspect on the delete method trys to find the Id of the object which was removed. this fails because the object is already deleted so it returns NULL and the call to elastic-search is DELETE/[index]/[type]/
I could track the issue down to "ObjectIndexer.removeObject"
when you have a model with Custom Id Property and not standard-name "persistence_object_identifier", the aspect on the delete method trys to find the Id of the object which was removed. this fails because the object is already deleted so it returns NULL and the call to elastic-search is DELETE/[index]/[type]/
I could track the issue down to "ObjectIndexer.removeObject"
$id = $this->persistenceManager->getIdentifierByObject($object);
Here the Persistence Manager returns NULL
If I change the Aspect to run before, everything works fine:
So we have different possible solutions for this:
Can somebody support me for this case please?
The text was updated successfully, but these errors were encountered: