Commit 95c9f6a7 authored by Shinya Maeda's avatar Shinya Maeda

Make all workers in BuildFinishedWorker to run async and reorder

parent 452fe821
......@@ -8,9 +8,9 @@ class BuildFinishedWorker
Ci::Build.find_by(id: build_id).try do |build|
UpdateBuildMinutesService.new(build.project, nil).execute(build)
BuildTraceSectionsWorker.perform_async(build.id)
BuildCoverageWorker.perform_async(build.id)
BuildHooksWorker.perform_async(build.id)
CreateTraceArtifactWorker.perform_async(build.id)
BuildCoverageWorker.new.perform(build.id)
BuildHooksWorker.new.perform(build.id)
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment