Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_trace_sections_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0f5c144e10f6881573cd5cb8a63a4fa0a5ef7db (plain)
1
2
3
4
5
6
7
8
class BuildTraceSectionsWorker
  include ApplicationWorker
  include PipelineQueue

  def perform(build_id)
    Ci::Build.find_by(id: build_id)&.parse_trace_sections!
  end
end