Aayush Dahal
Aayush Dahal

Reputation: 1182

Laravel Job Not being attempted

Laravel is not being attempted (attempts = 0). I have created jobs table and dispatched a job.

The job is now currently being listed in the jobs table but with attempts = 0

I have updated QUEUE_CONNECTION=database and run php artisan config:cache. I have also hit queue:restart but still same result.

Additionally, I have tried with php artisan queue:work --force (without force as well) and php artisan queue:listen as well but still not being attempted.

Screenshot

Upvotes: 2

Views: 2429

Answers (1)

Bram Verstraten
Bram Verstraten

Reputation: 1557

You have dispatched the job to the property queue. To process this queue run:

php artisan queue:work --queue=property

Upvotes: 3

Related Questions