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

execute_worker.rb « integrations « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 443f1d9fe8ee52221cf167d5a93bbffe050fee28 (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
# frozen_string_literal: true

module Integrations
  class ExecuteWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    data_consistency :always
    sidekiq_options retry: 3
    sidekiq_options dead: false
    feature_category :integrations
    urgency :low

    worker_has_external_dependencies!

    def perform(hook_id, data)
      data = data.with_indifferent_access
      integration = Integration.find_by_id(hook_id)
      return unless integration

      begin
        integration.execute(data)
      rescue StandardError => e
        integration.log_exception(e)
      end
    end
  end
end