Let's use the delegation to the transaction manager here

`within_new_transaction` is delegated to the transaction manager. Let's remove
this explicit receiver to honor the delegation and for consistency with usage
of the also delegated `current_transaction`.
This commit is contained in:
Xavier Noria 2024-05-28 13:17:31 +02:00
parent 9ce4d4468e
commit 2aeb322806
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ module ActiveRecord
end
yield current_transaction
else
transaction_manager.within_new_transaction(isolation: isolation, joinable: joinable, &block)
within_new_transaction(isolation: isolation, joinable: joinable, &block)
end
rescue ActiveRecord::Rollback
# rollbacks are silently swallowed