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

sidekiq_versioning.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80c0b7650f361417daed02cd68748a3f322b4a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module SidekiqVersioning
    def self.install!
      # The Sidekiq client API always adds the queue to the Sidekiq queue
      # list, but mail_room and gitlab-shell do not. This is only necessary
      # for monitoring.
      queues = SidekiqConfig.worker_queues

      if queues.any?
        Sidekiq.redis do |conn|
          conn.pipelined do
            queues.each do |queue|
              conn.sadd('queues', queue)
            end
          end
        end
      end
    rescue ::Redis::BaseError, SocketError, Errno::ENOENT, Errno::EADDRNOTAVAIL, Errno::EAFNOSUPPORT, Errno::ECONNRESET, Errno::ECONNREFUSED
    end
  end
end