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 be0f545 commit 4d72af1
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Classes/Factory/SubscriptionStore/DoctrineSubscriptionStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,19 +169,4 @@ public function transactional(\Closure $closure): mixed
{
return $this->dbal->transactional($closure);
}

public function createSavepoint(): void
{
$this->dbal->createSavepoint('SUBSCRIBER');
}

public function releaseSavepoint(): void
{
$this->dbal->releaseSavepoint('SUBSCRIBER');
}

public function rollbackSavepoint(): void
{
$this->dbal->rollbackSavepoint('SUBSCRIBER');
}
}

0 comments on commit 4d72af1

Please sign in to comment.