method

enqueue_source_location

rails latest stable - Class: ActiveJob::LogSubscriber

Method not available on this version

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

enqueue_source_location()
private

No documentation available.

# File activejob/lib/active_job/log_subscriber.rb, line 199
      def enqueue_source_location
        Thread.each_caller_location do |location|
          frame = backtrace_cleaner.clean_frame(location)
          return frame if frame
        end
        nil
      end