aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/execution.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/active_job/execution.rb')
-rw-r--r--lib/active_job/execution.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/active_job/execution.rb b/lib/active_job/execution.rb
index 563e42ff89..d21fd32292 100644
--- a/lib/active_job/execution.rb
+++ b/lib/active_job/execution.rb
@@ -16,7 +16,7 @@ module ActiveJob
perform *arguments
end
rescue => exception
- rescue_with_handler(exception)
+ rescue_with_handler(exception) || raise(exception)
end
def perform(*)