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

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

class ProjectServiceWorker # 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(hook_id)
    integration.execute(data)
  rescue StandardError => error
    integration_class = integration&.class&.name || "Not Found"
    Gitlab::ErrorTracking.log_exception(error, integration_class: integration_class)
  end
end