Make all workers in BuildFinishedWorker to run async and reorder

This commit is contained in:
Shinya Maeda 2018-02-05 17:06:53 +09:00
parent 522cadede8
commit bb4ebd0b70

View file

@ -7,9 +7,9 @@ class BuildFinishedWorker
def perform(build_id)
Ci::Build.find_by(id: build_id).try do |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