aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/queue_adapters/que_adapter.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2014-05-22 20:37:06 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2014-05-22 20:37:06 +0200
commit26dc3ea7b8ac770b8265fa8ce97ed67158cfb68a (patch)
treef5eb36ae2efbb3a753c4dba5c0592a85e4544efa /lib/active_job/queue_adapters/que_adapter.rb
parentef4aff07a41f1249baade695e68c75a8db3ded58 (diff)
downloadrails-26dc3ea7b8ac770b8265fa8ce97ed67158cfb68a.tar.gz
rails-26dc3ea7b8ac770b8265fa8ce97ed67158cfb68a.tar.bz2
rails-26dc3ea7b8ac770b8265fa8ce97ed67158cfb68a.zip
Rename #perform_with_hooks to #execution
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 adb9125666..3d30b2bc72 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_hooks *args
+ job.new.execute *args
end
end
end