Skip to content

Commit

Permalink
One more deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmy committed Dec 29, 2023
1 parent 1df3087 commit 4e1f44d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/job-queue/Test/DbalPersistedConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ private function wrapTransactionNestingLevel($method)
$this->setTransactionNestingLevel($this->getPersistedTransactionNestingLevel());

try {
call_user_func(['parent', $method]);
call_user_func([parent::class, $method]);
} catch (\Exception $e) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected function createQueue(Context $context, $queueName)
{
$result = $this->createSnsQsQueue($queueName);
sleep(1);

return $result;
}
}

0 comments on commit 4e1f44d

Please sign in to comment.