Welcome to mirror list, hosted at ThFree Co, Russian Federation.

todos_destroyer_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c31b64ad9756fc9f12819aed6ea41f78e0ea817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

##
# Concern for setting Sidekiq settings for the various Todos Destroyers.
#
module TodosDestroyerQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :todos_destroyer
    feature_category :team_planning
  end
end