Verk.RetrySet.requeue_job-exclamation-mark

You're seeing just the function requeue_job-exclamation-mark, go back to Verk.RetrySet module for more information.
Link to this function

requeue_job!(original_json, redis \\ Verk.Redis)

View Source

Specs

requeue_job!(
  %Verk.Job{
    args: term(),
    class: term(),
    created_at: term(),
    enqueued_at: term(),
    error_backtrace: term(),
    error_message: term(),
    failed_at: term(),
    finished_at: term(),
    jid: term(),
    max_retry_count: term(),
    original_json: term(),
    queue: term(),
    retried_at: term(),
    retry_count: term()
  }
  | String.t(),
  GenServer.server()
) :: boolean()

Move the job out of the retry set to be retried immediately, raising if there's an error.

It returns true if the job was found and requeued. Otherwise it returns false.