gitlab-org--gitlab-foss/app/workers/concerns/cronjob_queue.rb

14 lines
314 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Concern that sets various Sidekiq settings for workers executed using a
# cronjob.
module CronjobQueue
extend ActiveSupport::Concern
included do
2017-11-28 16:16:50 +00:00
queue_namespace :cronjob
sidekiq_options retry: false
worker_context project: nil, namespace: nil, user: nil
end
end