gen-manifests: minor output changes

Don't print "Worker started" message.
Print "done" after submitting all jobs to the queue.
This commit is contained in:
Achilleas Koutsou 2022-07-08 21:05:40 +02:00 committed by Christian Kellner
parent b20605d9f1
commit 2afc8fd1dd
2 changed files with 1 additions and 1 deletions

View file

@ -441,6 +441,7 @@ func main() {
for _, j := range jobs {
wq.submitJob(j)
}
fmt.Println("done")
errs := wq.wait()
exit := 0
if len(errs) > 0 {

View file

@ -85,7 +85,6 @@ func (wq *workerQueue) startWorker(idx uint32) {
}
}
}()
wq.msgQueue <- fmt.Sprintf("Worker %d started", idx)
}
func (wq *workerQueue) startMessagePrinter() {