summaryrefslogtreecommitdiff
path: root/app/workers/propagate_service_template_worker.rb
blob: 5ce0e0405d0acd412c8df3b5ff18819348ae3485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Worker for updating any project specific caches.
class PropagateServiceTemplateWorker
  include Sidekiq::Worker
  include DedicatedSidekiqQueue

  LEASE_TIMEOUT = 4.hours.to_i

  def perform(template_id)
    return unless try_obtain_lease_for(template_id)

    Projects::PropagateServiceTemplate.propagate(Service.find_by(id: template_id))
  end

  private

  def try_obtain_lease_for(template_id)
    Gitlab::ExclusiveLease.
      new("propagate_service_template_worker:#{template_id}", timeout: LEASE_TIMEOUT).
      try_obtain
  end
end