mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #12545 from nateberkopec/rephrase_callback_warning
Rephrase ActiveRecord transaction rollback warning [ci skip]
This commit is contained in:
commit
f2ca5aa5c2
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ As you start registering new callbacks for your models, they will be queued for
|
|||
|
||||
The whole callback chain is wrapped in a transaction. If any _before_ callback method returns exactly `false` or raises an exception, the execution chain gets halted and a ROLLBACK is issued; _after_ callbacks can only accomplish that by raising an exception.
|
||||
|
||||
WARNING. Raising an arbitrary exception may break code that expects `save` and its friends not to fail like that. The `ActiveRecord::Rollback` exception is thought precisely to tell Active Record a rollback is going on. That one is internally captured but not reraised.
|
||||
WARNING. Any exception that is not `ActiveRecord::Rollback` will be re-raised by Rails after the callback chain is halted. Raising an exception other than `ActiveRecord::Rollback` may break code that does not expect methods like `save` and `update_attributes` (which normally try to return `true` or `false`) to raise an exception.
|
||||
|
||||
Relational Callbacks
|
||||
--------------------
|
||||
|
|
Loading…
Reference in a new issue