debian-mirror-gitlab/app/workers/expire_job_cache_worker.rb

32 lines
732 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
class ExpireJobCacheWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2018-03-17 18:26:18 +05:30
include PipelineQueue
queue_namespace :pipeline_cache
2020-04-08 14:13:33 +05:30
urgency :high
idempotent!
2017-08-17 22:00:37 +05:30
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
def perform(job_id)
2021-04-29 21:17:54 +05:30
job = CommitStatus.eager_load_pipeline.find_by(id: job_id)
2017-08-17 22:00:37 +05:30
return unless job
pipeline = job.pipeline
project = job.project
2021-04-17 20:07:23 +05:30
Gitlab::EtagCaching::Store.new.touch(project_job_path(project, job))
ExpirePipelineCacheWorker.perform_async(pipeline.id)
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-08-17 22:00:37 +05:30
private
def project_job_path(project, job)
2017-09-10 17:25:29 +05:30
Gitlab::Routing.url_helpers.project_build_path(project, job.id, format: :json)
2017-08-17 22:00:37 +05:30
end
end