method
within_new_transaction
Ruby on Rails latest stable (v7.1.3.2)
-
0 notes -
Class: TransactionManager
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
within_new_transaction(isolation: nil, joinable: true)
public
Hide source
# File activerecord/lib/active_record/connection_adapters/abstract/transaction.rb, line 531 def within_new_transaction(isolation: nil, joinable: true) @connection.lock.synchronize do transaction = begin_transaction(isolation: isolation, joinable: joinable) begin ret = yield completed = true ret rescue Exception => error rollback_transaction after_failure_actions(transaction, error) raise ensure unless error # In 7.1 we enforce timeout >= 0.4.0 which no longer use throw, so we can # go back to the original behavior of committing on non-local return. # If users are using throw, we assume it's not an error case. completed = true if ActiveRecord.commit_transaction_on_non_local_return if Thread.current.status == "aborting" rollback_transaction elsif !completed && transaction.written ActiveRecord.deprecator.warn(<<~EOW) A transaction is being rolled back because the transaction block was exited using `return`, `break` or `throw`. In Rails 7.2 this transaction will be committed instead. To opt-in to the new behavior now and suppress this warning you can set: Rails.application.config.active_record.commit_transaction_on_non_local_return = true EOW rollback_transaction else begin commit_transaction rescue ActiveRecord::ConnectionFailed transaction.invalidate! unless transaction.state.completed? raise rescue Exception rollback_transaction(transaction) unless transaction.state.completed? raise end end end end ensure unless transaction&.state&.completed? @connection.throw_away! transaction&.incomplete! end end end