method

update_attributes_from_transaction_state

update_attributes_from_transaction_state(transaction_state)
private

No documentation available.

# File activerecord/lib/active_record/transactions.rb, line 502
    def update_attributes_from_transaction_state(transaction_state)
      if transaction_state && transaction_state.finalized?
        restore_transaction_record_state if transaction_state.rolledback?
        clear_transaction_record_state
      end
    end