aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/queue_adapters/que_adapter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/active_job/queue_adapters/que_adapter.rb')
-rw-r--r--lib/active_job/queue_adapters/que_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/active_job/queue_adapters/que_adapter.rb b/lib/active_job/queue_adapters/que_adapter.rb
index 9dd57d65f3..adb9125666 100644
--- a/lib/active_job/queue_adapters/que_adapter.rb
+++ b/lib/active_job/queue_adapters/que_adapter.rb
@@ -15,7 +15,7 @@ module ActiveJob
class JobWrapper < Que::Job
def run(job, *args)
- job.new.perform_with_deserialization *args
+ job.new.perform_with_hooks *args
end
end
end