lib/lev/active_job/configured_job.rb in lev-12.0.0 vs lib/lev/active_job/configured_job.rb in lev-12.1.0

- old
+ new

@@ -10,11 +10,11 @@ def options routine_class.active_job_enqueue_options.merge(@options) end - def perform_later(*args, &block) - routine_class.job_class.new.perform_later(routine_class, options, *args, &block) + def perform_later(*args, **kwargs, &block) + routine_class.job_class.new.perform_later(routine_class, options, *args, **kwargs, &block) end end end end