laravel-async-queue icon indicating copy to clipboard operation
laravel-async-queue copied to clipboard

Laravel 5.1 queue not cleared after finish

Open applefreak opened this issue 10 years ago • 1 comments

Just as the title says, but if I run a queue listener (php artisan:queue) the queue in DB clears itself after running. Is it because I setup the queue wrong? I have the following in my config/queue.php

...

'async' => [
    'driver' => 'async',
    'table' => 'jobs',
    'queue' => 'default',
    'expire' => 60,
],

...

Thanks in advance!

applefreak avatar Jun 26 '15 07:06 applefreak

Can you try with 0.4.0?

barryvdh avatar Aug 07 '15 12:08 barryvdh