diff options
-rw-r--r-- | activejob/CHANGELOG.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 0867ba4e9b..ff8375e690 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,11 +1,11 @@ -* Allow block to be passed to ActiveJob::Base.discard_on to allow custom handling of discard jobs. +* Allow block to be passed to `ActiveJob::Base.discard_on` to allow custom handling of discard jobs. Example: class RemoteServiceJob < ActiveJob::Base - discard_on(CustomAppException) do |job, exception| - ExceptionNotifier.caught(exception) - end + discard_on(CustomAppException) do |job, exception| + ExceptionNotifier.caught(exception) + end def perform(*args) # Might raise CustomAppException for something domain specific @@ -14,6 +14,7 @@ *Aidan Haran* + ## Rails 5.2.0.beta2 (November 28, 2017) ## * No changes. |