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).
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.