2017-05-03 11:20:12 -04:00
|
|
|
# Worker for updating any project specific caches.
|
2017-05-05 12:01:33 -04:00
|
|
|
class PropagateServiceTemplateWorker
|
2017-05-03 11:20:12 -04:00
|
|
|
include Sidekiq::Worker
|
|
|
|
include DedicatedSidekiqQueue
|
|
|
|
|
2017-05-04 06:21:35 -04:00
|
|
|
LEASE_TIMEOUT = 4.hours.to_i
|
2017-05-03 11:20:12 -04:00
|
|
|
|
|
|
|
def perform(template_id)
|
2017-05-04 06:13:33 -04:00
|
|
|
return unless try_obtain_lease_for(template_id)
|
2017-05-03 11:20:12 -04:00
|
|
|
|
2017-05-05 12:01:33 -04:00
|
|
|
Projects::PropagateServiceTemplate.propagate(Service.find_by(id: template_id))
|
2017-05-03 11:20:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def try_obtain_lease_for(template_id)
|
2017-06-21 09:48:12 -04:00
|
|
|
Gitlab::ExclusiveLease
|
|
|
|
.new("propagate_service_template_worker:#{template_id}", timeout: LEASE_TIMEOUT)
|
|
|
|
.try_obtain
|
2017-05-03 11:20:12 -04:00
|
|
|
end
|
|
|
|
end
|