1 2 3 4 5 6 7 8 9 10
class NestedJob < ActiveJob::Base def perform LoggingJob.perform_later "NestedJob" end def job_id "NESTED-JOB-ID" end end