cloudapi: Fix missing specs for koji ContainerResolve

It looks like this got lost in a refactor back in commit 6e4efabf24
when it used to populate the Specs list in a loop.
This commit is contained in:
Brian C. Lane 2025-05-02 16:04:40 -07:00 committed by Achilleas Koutsou
parent 0e5d8a94f2
commit 4cb47a424d

View file

@ -339,7 +339,7 @@ func (s *Server) enqueueKojiCompose(taskID uint64, server, name, version, releas
job := worker.ContainerResolveJob{
Arch: arch.Name(),
Specs: make([]worker.ContainerSpec, len(ir.blueprint.Containers)),
Specs: workerResolveSpecs,
}
jobId, err := s.workers.EnqueueContainerResolveJob(&job, channel)