mirror of
https://github.com/doctrine/orm.git
synced 2026-04-29 09:23:20 +02:00
DDC-1690: Notify policy listeners are not attached to entities with Notify policy #2126
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Mar 8, 2012).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user deatheriam:
It seems that it happens because the UnitOfWork::addToIdentityMap() is not the only way to add an entity to the identity map. It is possible to do it directly by assigning array values (pulling my hair why?) . But the code in that method also adds a property changed listener to an entity. As a result that entity is not persisted properly as it does not have a listener. I spent a lot of time trying to figure out why some of my entities were persisted and others no. That happens for entities of same class with parent - children associations.
Probably the notify policy is not very popular otherwise the bug would have been reported long time ago.
Adding these lines to the UnitOfWork at line 2004 fixes the issue:
@doctrinebot commented on GitHub (Mar 15, 2012):
Comment created by @guilhermeblanco:
Changing the code (Perf & Inline block) to this:
Also fixed the issue and the performance impact was around 3% during my tests.
@doctrinebot commented on GitHub (Apr 16, 2012):
Comment created by deatheriam:
So Doctrine 2.2.2 is out but the fix for this serious issue was not included in it. What version then it is supposed to fix? Doctrine seems to be riddled with issues related to the Notify strategy (look here for another related issue: http://www.doctrine-project.org/jira/browse/DDC-1775). It renders that strategy unusable.
@doctrinebot commented on GitHub (Dec 20, 2012):
Comment created by pschwisow:
Submitted a pull request for this fix: https://github.com/doctrine/doctrine2/pull/541
@doctrinebot commented on GitHub (Dec 22, 2012):
Issue was closed with resolution "Fixed"