mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix typo on method name
[Robin Dupret]
This commit is contained in:
parent
0e5ffa740c
commit
3f866cbdab
1 changed files with 3 additions and 3 deletions
|
@ -237,7 +237,7 @@ module ActiveJob
|
|||
serialized_args.all? { |key, value| value == job[key] }
|
||||
end
|
||||
assert matching_job, "No enqueued job found with #{args}"
|
||||
instanciate_job(matching_job)
|
||||
instantiate_job(matching_job)
|
||||
ensure
|
||||
queue_adapter.enqueued_jobs = original_enqueued_jobs + enqueued_jobs
|
||||
end
|
||||
|
@ -259,7 +259,7 @@ module ActiveJob
|
|||
serialized_args.all? { |key, value| value == job[key] }
|
||||
end
|
||||
assert matching_job, "No performed job found with #{args}"
|
||||
instanciate_job(matching_job)
|
||||
instantiate_job(matching_job)
|
||||
ensure
|
||||
queue_adapter.performed_jobs = original_performed_jobs + performed_jobs
|
||||
end
|
||||
|
@ -314,7 +314,7 @@ module ActiveJob
|
|||
serialized_args
|
||||
end
|
||||
|
||||
def instanciate_job(payload)
|
||||
def instantiate_job(payload)
|
||||
job = payload[:job].new(*payload[:args])
|
||||
job.scheduled_at = Time.at(payload[:at]) if payload.key?(:at)
|
||||
job.queue_name = payload[:queue]
|
||||
|
|
Loading…
Reference in a new issue