What would prevent jobs in a queue from processing? [PHP / Laravel 5] What would prevent jobs in a queue from processing? [PHP / Laravel 5] database database

What would prevent jobs in a queue from processing? [PHP / Laravel 5]


i run into a smiliar issue because i dont add the jobs in the default queue..

        $job = (new EmailJob(            $this->a,            $this->b,            $this->c,            $this->d,            $e        ))->onQueue('emails');

then i have to listen to the specific queue:

php artisan queue:listen --queue=emails

in your case it would be

php artisan queue:listen --queue=company_deletions