Skip to content

Commit

Permalink
TASK: Move transactional logic _on_ projection as it does not belong …
Browse files Browse the repository at this point in the history
…to the subscription store

... which technically only coincidentally uses the same connection and dbal instance

see neos/neos-development-collection#5321 (comment)
  • Loading branch information
mhsdesign committed Nov 27, 2024
1 parent a39e9ca commit 22eb7e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Domain/Projection/HypergraphProjection.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
use Neos\ContentRepository\Core\Feature\SubtreeTagging\Event\SubtreeWasTagged;
use Neos\ContentRepository\Core\Feature\SubtreeTagging\Event\SubtreeWasUntagged;
use Neos\ContentRepository\Core\Infrastructure\DbalSchemaDiff;
use Neos\ContentRepository\Core\Infrastructure\ProjectionTransactionTrait;
use Neos\ContentRepository\Core\Projection\ContentGraph\ContentGraphProjectionInterface;
use Neos\ContentRepository\Core\Projection\ContentGraph\ContentGraphReadModelInterface;
use Neos\ContentRepository\Core\Projection\ProjectionStatus;
Expand All @@ -52,6 +53,8 @@
*/
final class HypergraphProjection implements ContentGraphProjectionInterface
{
use ProjectionTransactionTrait;

use ContentStreamForking;
use NodeCreation;
use SubtreeTagging;
Expand Down

0 comments on commit 22eb7e4

Please sign in to comment.