Flowdock
method

display_name

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: JobWrapper
display_name() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/queue_adapters/delayed_job_adapter.rb, line 38
        def display_name
          base_name = "#{job_data["job_class"]} [#{job_data["job_id"]}] from DelayedJob(#{job_data["queue_name"]})"

          return base_name unless log_arguments?

          "#{base_name} with arguments: #{job_data["arguments"]}"
        end
Register or log in to add new notes.