method

step_skipped

rails latest stable - Class: ActiveJob::StructuredEventSubscriber

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

step_skipped(event)
public

No documentation available.

# File activejob/lib/active_job/structured_event_subscriber.rb, line 173
    def step_skipped(event)
      job = event.payload[:job]
      step = event.payload[:step]

      emit_event("active_job.step_skipped",
        job_class: job.class.name,
        job_id: job.job_id,
        step: step.name,
      )
    end