laravel horizon: not all queues visible

revision 3548b1e702d1a682765ee0f9125caf6b78e223cd

raw

README.rst

Problem

Our laravel horizon instance did only show one queue, while I definitely dispatched some jobs on a second queue.

Solution

My .env file had QUEUE_DRIVER=sync, so horizon showed only sync'ed jobs, and no redis queues at all. Because I manually dispatched jobs on a non-default queue, they used redis, despite the QUEUE_DRIVER setting.

History