debian-mirror-gitlab/app/workers/pages_update_configuration_worker.rb
2021-06-08 01:23:25 +05:30

25 lines
485 B
Ruby

# frozen_string_literal: true
class PagesUpdateConfigurationWorker
include ApplicationWorker
sidekiq_options retry: 3
idempotent!
feature_category :pages
tags :exclude_from_kubernetes
def self.perform_async(*args)
return unless ::Settings.pages.local_store.enabled
super(*args)
end
def perform(project_id)
project = Project.find_by_id(project_id)
return unless project
Projects::UpdatePagesConfigurationService.new(project).execute
end
end