Support the ongoing development of Laravel.io →
posted 9 years ago
Queues
Last updated 2 years ago.
0

First of all, check that you are actually using beanstalkd as your queue driver. Because right now, it looks like you are using the default sync. Note, that to switch to beanstalkd, you need to specify it in your .env file:

QUEUE_DRIVER=beanstalkd

Changing this string your app.queue.php file:

'default' => env('QUEUE_DRIVER', 'sync'),

to

'default' => env('QUEUE_DRIVER', 'beanstalkd'),

won't change the driver. Second argument here defines the default value if QUEUE_DRIVER environment variable is not set (and it is by default, in .env file).

0

Sign in to participate in this thread!

Eventy

Your banner here too?

netm netm Joined 2 Apr 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.