1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-21 21:04:19 -04:00

Update queue_redis.go (#9910)

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
zeripath 2020-01-21 12:50:27 +00:00 committed by GitHub
parent 8da863ed15
commit 8cb9b2f016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,6 +87,7 @@ func NewRedisQueue(handle HandlerFunc, cfg, exemplar interface{}) (Queue, error)
queueName: config.QueueName, queueName: config.QueueName,
exemplar: exemplar, exemplar: exemplar,
closed: make(chan struct{}), closed: make(chan struct{}),
terminated: make(chan struct{}),
workers: config.Workers, workers: config.Workers,
name: config.Name, name: config.Name,
} }