Fix annoying joqqueue issue where jobs were blocked by unused channel

This commit is contained in:
Jamie Curnow
2024-11-13 08:03:10 +10:00
parent 61c41b8ec3
commit 050c087a51
2 changed files with 2 additions and 10 deletions

View File

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