gitlab-org--gitlab-foss/app/workers/expire_job_cache_worker.rb

34 lines
760 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ExpireJobCacheWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include PipelineQueue
2017-11-28 16:16:50 +00:00
queue_namespace :pipeline_cache
urgency :high
idempotent!
# rubocop: disable CodeReuse/ActiveRecord
def perform(job_id)
job = CommitStatus.eager_load_pipeline.find_by(id: job_id)
return unless job
pipeline = job.pipeline
project = job.project
Gitlab::EtagCaching::Store.new.touch(project_job_path(project, job))
ExpirePipelineCacheWorker.perform_async(pipeline.id)
end
# rubocop: enable CodeReuse/ActiveRecord
private
def project_job_path(project, job)
Gitlab::Routing.url_helpers.project_build_path(project, job.id, format: :json)
end
end