gitea/modules/queue
Lunny Xiao fcc8cdd446
Improve config logging when WrappedQueue times out ()
Before
```sh
Unable to set the internal queue for -wrapper Error: Timedout creating queue redis with cfg []byte{0x7b, 0x22, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x22, 0x3a, 0x22, 0x31, 0x32, 0x37, 0x2e, 0x30, 0x2e, 0x30, 0x2e, 0x31, 0x3a, 0x36, 0x33, 0x37, 0x39, 0x22, 0x2c, 0x22, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x22, 0x3a, 0x32, 0x30, 0x2c, 0x22, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x22, 0x42, 0x6f, 0x6f, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x22, 0x3a, 0x33, 0x30, 0x30, 0x30, 0x30, 0x30
......
```

After
```sh
Unable to set the internal queue for -wrapper Error: Timedout creating queue redis with cfg "{\"Addresses\":\"127.0.0.1:6379\",\"BatchLength\":20,\"BlockTimeout\":1000000000,\"BoostTimeout\":300000000000,\"BoostWorkers\":5,\"DBIndex\":0,\"DataDir\":\".../data/queues/mail\",\"MaxWorkers\":10,\"Name\":\"mail\",\"Network\":\"\",\"Password\":\"\",\"QueueLength\":20,\"QueueName\":\"mail_queue\",\"SetName\":\"\",\"Workers\":1}" in
```
..
bytefifo.go Add Unique Queue infrastructure and move TestPullRequests to this ()
helper.go Queue: Make WorkerPools and Queues flushable ()
manager.go Fix broken FlushAll ()
queue.go Add Unique Queue infrastructure and move TestPullRequests to this ()
queue_bytefifo.go Add Unique Queue infrastructure and move TestPullRequests to this ()
queue_channel.go Add Unique Queue infrastructure and move TestPullRequests to this ()
queue_channel_test.go Fix Workerpool deadlock ()
queue_disk.go Add Unique Queue infrastructure and move TestPullRequests to this ()
queue_disk_channel.go Add Unique Queue infrastructure and move TestPullRequests to this ()
queue_disk_channel_test.go Graceful Queues: Issue Indexing and Tasks ()
queue_disk_test.go Add Unique Queue infrastructure and move TestPullRequests to this ()
queue_redis.go Fix queue pop error and stat empty repository error ()
queue_test.go Graceful Queues: Issue Indexing and Tasks ()
queue_wrapped.go Improve config logging when WrappedQueue times out ()
setting.go Add Unique Queue infrastructure and move TestPullRequests to this ()
unique_queue.go Add Unique Queue infrastructure and move TestPullRequests to this ()
unique_queue_channel.go Add Unique Queue infrastructure and move TestPullRequests to this ()
unique_queue_disk.go Add Unique Queue infrastructure and move TestPullRequests to this ()
unique_queue_disk_channel.go Add Unique Queue infrastructure and move TestPullRequests to this ()
unique_queue_redis.go Fix queue pop error and stat empty repository error ()
unique_queue_wrapped.go Add Unique Queue infrastructure and move TestPullRequests to this ()
workerpool.go Fix Workerpool deadlock ()