Make all workers in BuildFinishedWorker to run async and reorder
This commit is contained in:
parent
522cadede8
commit
bb4ebd0b70
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue