Browse Source

Update queue_redis.go (#9911)

tags/v1.11.0-rc2
zeripath 6 years ago committed by Lunny Xiao
parent
commit
05b9864086
  1. 11
      modules/queue/queue_redis.go

11
modules/queue/queue_redis.go

@ -84,11 +84,12 @@ func NewRedisQueue(handle HandlerFunc, cfg, exemplar interface{}) (Queue, error)
boostWorkers: config.BoostWorkers,
maxNumberOfWorkers: config.MaxWorkers,
},
queueName: config.QueueName,
exemplar: exemplar,
closed: make(chan struct{}),
workers: config.Workers,
name: config.Name,
queueName: config.QueueName,
exemplar: exemplar,
closed: make(chan struct{}),
terminated: make(chan struct{}),
workers: config.Workers,
name: config.Name,
}
if len(dbs) == 0 {
return nil, errors.New("no redis host specified")

Loading…
Cancel
Save