Jul 7, 2022
5
Level 3
php artisan queue:work only processing first queue
We have 3 different Redis queues in our application, high, normal and low. We have setup supervisor to run the queue work command:
php artisan queue:work redis --queue=high,normal,low
Only the jobs on the first queue listed are processed. So if we change the order to --queue=low,normal,high only the jobs on the low queue are processed.
Please or to participate in this conversation.