Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[DoctrineBridge] fix messenger bus dispatch inside an active transaction #57816

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[DoctrineBridge] fix messenger bus dispatch inside an active transaction
  • Loading branch information
IndraGunawan authored and nicolas-grekas committed Jul 26, 2024
commit f164370dcf1109dbf8d90459a333ef3622a22977
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ protected function handleForManager(EntityManagerInterface $entityManager, Envel
}

$this->isHandling = true;
$initialTransactionLevel = $entityManager->getConnection()->getTransactionNestingLevel();

try {
return $stack->next()->handle($envelope, $stack);
} finally {
if ($entityManager->getConnection()->isTransactionActive()) {
if ($entityManager->getConnection()->getTransactionNestingLevel() > $initialTransactionLevel) {
$this->logger->error('A handler opened a transaction but did not close it.', [
'message' => $envelope->getMessage(),
]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public function log($level, $message, $context = []): void

public function testMiddlewareWrapsInTransactionAndFlushes()
{
$this->connection->expects($this->exactly(1))
->method('isTransactionActive')
->willReturn(true, true, false)
$this->connection->expects($this->exactly(2))
->method('getTransactionNestingLevel')
->willReturn(0, 1)
;

$this->middleware->handle(new Envelope(new \stdClass()), $this->getStackMock());
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.