debian-mirror-gitlab/app/workers/concerns/cronjob_queue.rb

24 lines
610 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2016-11-03 12:29:30 +05:30
# Concern that sets various Sidekiq settings for workers executed using a
# cronjob.
module CronjobQueue
extend ActiveSupport::Concern
included do
2018-03-17 18:26:18 +05:30
queue_namespace :cronjob
sidekiq_options retry: false
2020-03-13 15:44:24 +05:30
worker_context project: nil, namespace: nil, user: nil
2016-11-03 12:29:30 +05:30
end
2020-04-22 19:07:51 +05:30
class_methods do
# Cronjobs never get scheduled with arguments, so this is safe to
# override
def context_for_arguments(_args)
2021-04-29 21:17:54 +05:30
return if Gitlab::ApplicationContext.current_context_include?(:caller_id)
2020-04-22 19:07:51 +05:30
Gitlab::ApplicationContext.new(caller_id: "Cronjob")
end
end
2016-11-03 12:29:30 +05:30
end