Merge branch 'master' into no-kubernetes

This commit is contained in:
Miek Gieben
2021-01-12 07:44:42 +01:00
committed by GitHub
11 changed files with 153 additions and 62 deletions

View File

@@ -124,7 +124,7 @@ func (q *Queue) Run(ctx context.Context, workers int) {
func (q *Queue) worker(ctx context.Context, i int) {
ctx = log.WithLogger(ctx, log.G(ctx).WithFields(map[string]interface{}{
"workerId": i,
"Queue": q.name,
"queue": q.name,
}))
for q.handleQueueItem(ctx) {
}