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