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
Avoid duplicate processing of entities in certain situations (#91)
In certain situations where Doctrine detectes new entities with
`cascade: persist` during a flush operation, it might happen that the
same entity ends up twice in the map of tracked entities, leading to
duplicate `PersistentTranslatable::eject()` calls and failures (nothing
left to eject after the first call).
This can be avoided by making sure we track each object (instance) only
once.
0 commit comments