aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/performing.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/active_job/performing.rb')
-rw-r--r--lib/active_job/performing.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/active_job/performing.rb b/lib/active_job/performing.rb
index 126193995c..ef17a39f85 100644
--- a/lib/active_job/performing.rb
+++ b/lib/active_job/performing.rb
@@ -1,9 +1,9 @@
-require 'active_job/parameters'
+require 'active_job/arguments'
module ActiveJob
module Performing
def perform_with_hooks(*serialized_args)
- self.arguments = Parameters.deserialize(serialized_args)
+ self.arguments = Arguments.deserialize(serialized_args)
run_callbacks :perform do
perform *arguments