summaryrefslogtreecommitdiff
path: root/app/workers/project_service_worker.rb
blob: a1ed00a81cb7d6c36939a9e8331a2b7a03e3723c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class ProjectServiceWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  sidekiq_options retry: 3

  sidekiq_options dead: false
  feature_category :integrations
  worker_has_external_dependencies!

  def perform(hook_id, data)
    data = data.with_indifferent_access
    service = Service.find(hook_id)
    service.execute(data)
  rescue StandardError => error
    service_class = service&.class&.name || "Not Found"
    logger.error class: self.class.name, service_class: service_class, message: error.message
  end
end