lib/lev/active_job/configured_job.rb in lev-10.0.0 vs lib/lev/active_job/configured_job.rb in lev-10.1.0
- old
+ new
@@ -11,10 +11,10 @@
def options
routine_class.active_job_enqueue_options.merge(@options)
end
def perform_later(*args, &block)
- Lev::ActiveJob::Base.new.perform_later(routine_class, options, *args, &block)
+ routine_class.job_class.new.perform_later(routine_class, options, *args, &block)
end
end
end
end