mhenrixon/sidekiq-unique-jobs

View on GitHub
myapp/app/jobs/status_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class StatusJob
  include Sidekiq::Job

  sidekiq_options lock: :until_executed

  def perform(*args)
    logger.debug("This is happening: #{args}")
  end
end