aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_mailer_basics.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-05-03 13:36:44 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-05-07 02:19:57 +0900
commit718a32ca745672a977a0d4ae401f61f439767405 (patch)
tree048ba67fc584728771525b5d273b5695f13f2ea4 /guides/source/action_mailer_basics.md
parent020856c328085ffe4728afdab99e9008cc86d9e6 (diff)
downloadrails-718a32ca745672a977a0d4ae401f61f439767405.tar.gz
rails-718a32ca745672a977a0d4ae401f61f439767405.tar.bz2
rails-718a32ca745672a977a0d4ae401f61f439767405.zip
Should attempt `committed!`/`rolledback!` to all enrolled records in the transaction
Currently, `committed!`/`rolledback!` will only be attempted for the first enrolled record in the transaction, that will cause some problematic behaviors. The first one problem, `clear_transaction_record_state` won't be called even if the transaction is finalized except the first enrolled record. This means that de-duplicated records in the transaction won't refer latest state (e.g. won't happen rolling back record state). The second one problem, the enrolled order is not always the same as the order in which the actions actually happened, the first enrolled record may succeed no actions (e.g. `destroy` has already succeeded on another record during `before_destroy`), it will lose to fire any transactional callbacks. To avoid both problems, we should attempt `committed!`/`rolledback!` to all enrolled records in the transaction.
Diffstat (limited to 'guides/source/action_mailer_basics.md')
0 files changed, 0 insertions, 0 deletions