Files
gitlabhq/app/workers/concerns/gitlab/github_import/queue.rb
2024-01-15 18:07:01 +00:00

16 lines
280 B
Ruby

# frozen_string_literal: true
module Gitlab
module GithubImport
module Queue
extend ActiveSupport::Concern
included do
queue_namespace :github_importer
feature_category :importers
sidekiq_options dead: false
end
end
end
end