-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TASK: Remove transaction closures from projections #5075
Conversation
I guess this fixes our problem #4970 as well? |
Ah and i see #4988 will remove the whole Lines 118 to 121 in e5d9595
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed with hiding whitespace (what i normally dont like to do) but looks absolutely fine.
I'll add one |
sounds good but you might want to have input from someone more qualified than a wall (me regarding this topic :D) |
Neos.ContentGraph.DoctrineDbalAdapter/src/DoctrineDbalContentGraphProjection.php
Outdated
Show resolved
Hide resolved
…raphProjection.php Co-authored-by: Wilhelm Behncke <[email protected]>
Removes the many
transactional
closures from our projections that made the code harder to read and especially made exceptions much harder to debug.Due to our current architecture (see #4746) all
Projection::apply()
calls are wrapped in a transaction anywaysRelated: #3854