Fixes for hanging jobs, more verbose ci output

This commit is contained in:
Jamie Curnow
2024-11-12 15:36:38 +10:00
parent 47d7896301
commit 61c41b8ec3
5 changed files with 15 additions and 6 deletions

View File

@ -16,7 +16,7 @@ var (
func Start() {
ctx, cancel = context.WithCancel(context.Background())
q := &Queue{
jobs: make(chan Job),
jobs: make(chan Job, 10),
ctx: ctx,
cancel: cancel,
}