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

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

module Gitlab
  module SidekiqMiddleware
    module WorkerContext
      class Client
        include Gitlab::SidekiqMiddleware::WorkerContext

        def call(worker_class_or_name, job, _queue, _redis_pool, &block)
          worker_class = worker_class_or_name.to_s.safe_constantize

          # Mailers can't be constantized like this
          return yield unless worker_class
          return yield unless worker_class.include?(::ApplicationWorker)

          context_for_args = worker_class.context_for_arguments(job['args'])

          wrap_in_optional_context(context_for_args) do
            # This should be inside the context for the arguments so
            # that we don't override the feature category on the worker
            # with the one from the caller.
            Gitlab::ApplicationContext.with_context(feature_category: worker_class.get_feature_category.to_s, &block)
          end
        end
      end
    end
  end
end